Skip to content

Commit 4ab93f8

Browse files
NeQuissimusrycee
authored andcommittedAug 21, 2017
expat: 2.2.3 -> 2.2.4
1 parent 04cd1db commit 4ab93f8

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed
 

‎pkgs/development/libraries/expat/default.nix

+6-13
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,26 @@
11
{ stdenv, fetchpatch, fetchurl }:
22

33
stdenv.mkDerivation rec {
4-
name = "expat-2.2.3";
4+
name = "expat-2.2.4";
55

66
src = fetchurl {
77
url = "mirror://sourceforge/expat/${name}.tar.bz2";
8-
sha256 = "0pyfma0sv4vif17kfv7xh2l2hl6skgw266a9cwm00p7q0bxr065k";
8+
sha256 = "17h1fb9zvqvf0sr78j211bngc6jpql5wzar8fg9b52jzjvdqbb83";
99
};
1010

1111
outputs = [ "out" "dev" ]; # TODO: fix referrers
1212
outputBin = "dev";
1313

14-
patches = [
15-
(fetchpatch {
16-
name = "fix-aarch-build.patch";
17-
url = "https://github.com/libexpat/libexpat/commit/d98d4399174fd6f71d70e7bd89993a0e7346753d.patch";
18-
sha256 = "0z89wb4mzyf7vvl6kbflk5w1z7yc39jwvs3mkznin5agj34x063w";
19-
stripLen = 1;
20-
excludes = [ "coverage.sh" ];
21-
})
22-
];
23-
2414
configureFlags = stdenv.lib.optional stdenv.isFreeBSD "--with-pic";
2515

2616
outputMan = "dev"; # tiny page for a dev tool
2717

2818
doCheck = true;
2919

30-
preCheck = "patchShebangs ./run.sh";
20+
preCheck = ''
21+
patchShebangs ./run.sh
22+
patchShebangs ./test-driver-wrapper.sh
23+
'';
3124

3225
meta = with stdenv.lib; {
3326
homepage = http://www.libexpat.org/;

0 commit comments

Comments
 (0)