urbit/nix/nixcrpkgs/pkgs/xcb-util-keysyms/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

38 lines
777 B
Nix

{ crossenv, libxcb }:
let
version = "0.4.0";
name = "xcb-util-keysyms";
src = crossenv.nixpkgs.fetchurl {
url = "https://xcb.freedesktop.org/dist/xcb-util-keysyms-${version}.tar.bz2";
sha256 = "1nbd45pzc1wm6v5drr5338j4nicbgxa5hcakvsvm5pnyy47lky0f";
};
lib = crossenv.make_derivation rec {
inherit version name src;
builder = ./util_keysyms_builder.sh;
configure_flags =
"--host=${crossenv.host} " +
"--enable-static " +
"--disable-shared";
cross_inputs = [ libxcb ];
};
license = crossenv.native.make_derivation {
name = "${name}-license";
inherit src;
builder = ./license_builder.sh;
};
license_set =
libxcb.license_set //
{ "${name}" = license; };
in
lib // { inherit license_set; }