mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 10:56:53 +00:00
f6073d7f34
svn path=/nixpkgs/trunk/; revision=9469
10 lines
191 B
Nix
10 lines
191 B
Nix
{stdenv, fetchurl, unzip, src, name, postInstall ? "true"}:
|
|
|
|
assert unzip != null;
|
|
|
|
stdenv.mkDerivation {
|
|
inherit src name postInstall;
|
|
builder = ./builder.sh;
|
|
buildInputs = [unzip];
|
|
}
|