mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 21:02:01 +03:00
edd57d380d
- 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.
15 lines
335 B
Nix
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;
|
|
}
|