tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
libxslt: 1.1.29 -> 1.1.32
Franz Pletz
8 years ago
413d1844
e5523cd7
+3
-10
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libxslt
default.nix
+3
-10
pkgs/development/libraries/libxslt/default.nix
···
11
12
stdenv.mkDerivation rec {
13
pname = "libxslt";
14
-
version = "1.1.29";
15
name = pname + "-" + version;
16
17
src = fetchurl {
18
url = "http://xmlsoft.org/sources/${name}.tar.gz";
19
-
sha256 = "1klh81xbm9ppzgqk339097i39b7fnpmlj8lzn8bpczl3aww6x5xm";
20
};
21
22
-
patches = [
23
-
(fetchpatch {
24
-
name = "CVE-2017-5029";
25
-
url = "https://git.gnome.org/browse/libxslt/"
26
-
+ "patch/?id=08ab2774b870de1c7b5a48693df75e8154addae5";
27
-
sha256 = "10azfmyffjf9d7b5js4ipxw9f20qi0kw3zq34bpqmbcpq3l338ky";
28
-
})
29
-
] ++ stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch;
30
31
# fixes: can't build x86_64-unknown-cygwin shared library unless -no-undefined is specified
32
postPatch = optionalString hostPlatform.isCygwin ''
···
11
12
stdenv.mkDerivation rec {
13
pname = "libxslt";
14
+
version = "1.1.32";
15
name = pname + "-" + version;
16
17
src = fetchurl {
18
url = "http://xmlsoft.org/sources/${name}.tar.gz";
19
+
sha256 = "0q2l6m56iv3ysxgm2walhg4c9wp7q183jb328687i9zlp85csvjj";
20
};
21
22
+
patches = stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch;
0
0
0
0
0
0
0
23
24
# fixes: can't build x86_64-unknown-cygwin shared library unless -no-undefined is specified
25
postPatch = optionalString hostPlatform.isCygwin ''