2 changed files with 8 additions and 0 deletions
@ -0,0 +1,6 @@
|
||||
{stdenv, name, src, patches ? [], buildInputs ? [], ...}: |
||||
stdenv.mkDerivation { |
||||
inherit src buildInputs patches name; |
||||
installPhase = "cp -r . $out"; |
||||
phases = ["unpackPhase" "patchPhase" "installPhase"]; |
||||
} |
Loading…
Reference in new issue