A helper to get the source some package is built from.

svn path=/nixpkgs/trunk/; revision=12933
This commit is contained in:
Michael Raskin
2008-10-01 15:57:22 +00:00
parent 4e283a4dcb
commit ccf99b2ddf
2 changed files with 8 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
{stdenv, name, src, patches ? [], buildInputs ? [], ...}:
stdenv.mkDerivation {
inherit src buildInputs patches name;
installPhase = "cp -r . $out";
phases = ["unpackPhase" "patchPhase" "installPhase"];
}