tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Update Botan unstable and fix source link
Michael Raskin
11 years ago
7e285b8b
1e4ba025
+6
-3
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
botan
generic.nix
unstable.nix
+4
-1
pkgs/development/libraries/botan/generic.nix
···
11
11
12
12
src = fetchurl {
13
13
name = "Botan-${version}.tgz";
14
14
-
url = "http://files.randombit.net/botan/v${baseVersion}/Botan-${version}.tgz";
14
14
+
urls = [
15
15
+
"http://files.randombit.net/botan/v${baseVersion}/Botan-${version}.tgz"
16
16
+
"http://botan.randombit.net/releases/Botan-${version}.tgz"
17
17
+
];
15
18
inherit sha256;
16
19
};
17
20
+2
-2
pkgs/development/libraries/botan/unstable.nix
···
2
2
3
3
callPackage ./generic.nix (args // {
4
4
baseVersion = "1.11";
5
5
-
revision = "14";
6
6
-
sha256 = "1laa6d8w9v39a2pfmilj62jwc67r0jbq5f3xdlffd3kvkdnwcysb";
5
5
+
revision = "15";
6
6
+
sha256 = "1rkv84v09llbxyvh33szi7zsjm19l02j7h60n9g7jhhc2w667jk0";
7
7
openssl = null;
8
8
})