shrub/nix/nixcrpkgs/pkgs/expat/default.nix
benjamin-tlon edd57d380d
Finish cc-release cross-compilation. (#1202)
- Fixes the IPC bug
- Fixes the terminfo bug
- Moves the OSX SDK out of our nixcrpkgs fork.
- Vendor nixcrpkgs instead of having it be a submodule.
2019-04-23 19:50:38 -07:00

21 lines
470 B
Nix

{ crossenv }:
crossenv.make_derivation rec {
name = "expat-${version}";
version = "2.2.0";
src = crossenv.nixpkgs.fetchurl {
# Sourceforge went down. The original URL we used was:
# mirror://sourceforge/expat/expat-${version}.tar.bz2
url = "https://files.tmphax.com/repo1/expat-${version}.tar.bz2";
sha256 = "1zq4lnwjlw8s9mmachwfvfjf2x3lk24jm41746ykhdcvs7r0zrfr";
};
patches = [
./cve-2016-0718.patch
];
builder = ./builder.sh;
}