urbit/nix/nixcrpkgs/native/pkgconf/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

15 lines
335 B
Nix

{ env }:
env.make_derivation rec {
name = "pkgconf-${version}";
version = "1.0.1";
src = env.nixpkgs.fetchurl {
url = "https://github.com/pkgconf/pkgconf/releases/download/pkgconf-${version}/pkgconf-${version}.tar.gz";
sha256 = "1w9wb2z7zz6s4mifbllvhx0401bwsynhp02v312i6i9jn1m2zkj5";
};
builder = ./builder.sh;
}