mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
b32a057425
The function doesn't make use of the extra arguments.
7 lines
208 B
Nix
7 lines
208 B
Nix
{ stdenv, name, src, patches ? [], buildInputs ? [] }:
|
|
stdenv.mkDerivation {
|
|
inherit src buildInputs patches name;
|
|
installPhase = "cp -r . $out";
|
|
phases = ["unpackPhase" "patchPhase" "installPhase"];
|
|
}
|