shrub/nix/nixcrpkgs/pkgs/libxi/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

46 lines
1.1 KiB
Nix

{ crossenv, xproto, xextproto, inputproto, libx11, libxext, libxfixes }:
let
version = "1.7.9";
name = "libxi-${version}";
src = crossenv.nixpkgs.fetchurl {
url = "https://www.x.org/releases/individual/lib/libXi-${version}.tar.bz2";
sha256 = "0idg1wc01hndvaa820fvfs7phvd1ymf0lldmq6386i7rhkzvirn2";
};
lib = crossenv.make_derivation rec {
inherit version name src;
builder = ./builder.sh;
configure_flags =
"--host=${crossenv.host} " +
"--disable-malloc0returnsnull " +
"--enable-static " +
"--disable-shared";
cross_inputs = [ xproto xextproto inputproto libx11 libxext libxfixes ];
inherit inputproto libx11 libxext libxfixes;
};
license = crossenv.native.make_derivation {
name = "${name}-license";
inherit src;
builder = ./license_builder.sh;
};
license_set =
xproto.license_set //
xextproto.license_set //
inputproto.license_set //
libx11.license_set //
libxext.license_set //
libxfixes.license_set //
{ "${name}" = license; };
in
lib // { inherit license_set; }