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
12
src = fetchurl {
13
name = "Botan-${version}.tgz";
14
-
url = "http://files.randombit.net/botan/v${baseVersion}/Botan-${version}.tgz";
0
0
0
15
inherit sha256;
16
};
17
···
11
12
src = fetchurl {
13
name = "Botan-${version}.tgz";
14
+
urls = [
15
+
"http://files.randombit.net/botan/v${baseVersion}/Botan-${version}.tgz"
16
+
"http://botan.randombit.net/releases/Botan-${version}.tgz"
17
+
];
18
inherit sha256;
19
};
20
+2
-2
pkgs/development/libraries/botan/unstable.nix
···
2
3
callPackage ./generic.nix (args // {
4
baseVersion = "1.11";
5
-
revision = "14";
6
-
sha256 = "1laa6d8w9v39a2pfmilj62jwc67r0jbq5f3xdlffd3kvkdnwcysb";
7
openssl = null;
8
})
···
2
3
callPackage ./generic.nix (args // {
4
baseVersion = "1.11";
5
+
revision = "15";
6
+
sha256 = "1rkv84v09llbxyvh33szi7zsjm19l02j7h60n9g7jhhc2w667jk0";
7
openssl = null;
8
})