File tree 1 file changed +6
-13
lines changed
pkgs/development/libraries/expat
1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change 1
1
{ stdenv , fetchpatch , fetchurl } :
2
2
3
3
stdenv . mkDerivation rec {
4
- name = "expat-2.2.3 " ;
4
+ name = "expat-2.2.4 " ;
5
5
6
6
src = fetchurl {
7
7
url = "mirror://sourceforge/expat/${ name } .tar.bz2" ;
8
- sha256 = "0pyfma0sv4vif17kfv7xh2l2hl6skgw266a9cwm00p7q0bxr065k " ;
8
+ sha256 = "17h1fb9zvqvf0sr78j211bngc6jpql5wzar8fg9b52jzjvdqbb83 " ;
9
9
} ;
10
10
11
11
outputs = [ "out" "dev" ] ; # TODO: fix referrers
12
12
outputBin = "dev" ;
13
13
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
-
24
14
configureFlags = stdenv . lib . optional stdenv . isFreeBSD "--with-pic" ;
25
15
26
16
outputMan = "dev" ; # tiny page for a dev tool
27
17
28
18
doCheck = true ;
29
19
30
- preCheck = "patchShebangs ./run.sh" ;
20
+ preCheck = ''
21
+ patchShebangs ./run.sh
22
+ patchShebangs ./test-driver-wrapper.sh
23
+ '' ;
31
24
32
25
meta = with stdenv . lib ; {
33
26
homepage = http://www.libexpat.org/ ;
You can’t perform that action at this time.
0 commit comments