shrub/nix/nixcrpkgs/pkgs/at-spi2-headers/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

25 lines
611 B
Nix

{ crossenv }:
let
lib = crossenv.native.make_derivation {
name = "at-spi2-headers";
src = crossenv.nixpkgs.fetchgit {
url = "https://git.gnome.org/browse/at-spi2-core";
rev = "e1d5412b33463fd2f45dea400c45b107d0c78f42";
sha256 = "022k9yl65a5ak02283zhd8c73vnx8yc3siqj96qifwvdgd71ihb6";
};
builder = ./builder.sh;
};
license_fragment = crossenv.native.make_derivation {
name = "at-spi2-headers-license-fragment";
src = lib.src;
builder = ./license_builder.sh;
};
license_set = { "${lib.name}" = license_fragment; };
in
lib // { inherit license_set; }