summary refs log tree commit diff
path: root/pkgs/tools/text/diffutils
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-26 22:30:48 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-26 22:30:48 +0000
commit2efe6dc281c1bc99c919a86f29421a94676922ab (patch)
tree291a2dbaa64c6865ee9f68a747d41ffc127dc139 /pkgs/tools/text/diffutils
parentcf693caa08dd19ada3c417c35025d1aeb542599d (diff)
downloadnixlib-2efe6dc281c1bc99c919a86f29421a94676922ab.tar
nixlib-2efe6dc281c1bc99c919a86f29421a94676922ab.tar.gz
nixlib-2efe6dc281c1bc99c919a86f29421a94676922ab.tar.bz2
nixlib-2efe6dc281c1bc99c919a86f29421a94676922ab.tar.lz
nixlib-2efe6dc281c1bc99c919a86f29421a94676922ab.tar.xz
nixlib-2efe6dc281c1bc99c919a86f29421a94676922ab.tar.zst
nixlib-2efe6dc281c1bc99c919a86f29421a94676922ab.zip
* Tsk.
svn path=/nixpkgs/trunk/; revision=6865
Diffstat (limited to 'pkgs/tools/text/diffutils')
-rw-r--r--pkgs/tools/text/diffutils/builder.sh3
-rw-r--r--pkgs/tools/text/diffutils/default.nix3
2 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/tools/text/diffutils/builder.sh b/pkgs/tools/text/diffutils/builder.sh
deleted file mode 100644
index 6c508ed5614c..000000000000
--- a/pkgs/tools/text/diffutils/builder.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-source $stdenv/setup
-if test -n "$coreutils"; then PATH=$coreutils/bin:$PATH; fi
-genericBuild
\ No newline at end of file
diff --git a/pkgs/tools/text/diffutils/default.nix b/pkgs/tools/text/diffutils/default.nix
index 227d445086de..57531c69f295 100644
--- a/pkgs/tools/text/diffutils/default.nix
+++ b/pkgs/tools/text/diffutils/default.nix
@@ -2,11 +2,10 @@
 
 stdenv.mkDerivation {
   name = "diffutils-2.8.1";
-  builder = ./builder.sh;
   src = fetchurl {
     url = http://nix.cs.uu.nl/dist/tarballs/diffutils-2.8.1.tar.gz;
     md5 = "71f9c5ae19b60608f6c7f162da86a428";
   };
   /* If no explicit coreutils is given, use the one from stdenv. */
-  inherit coreutils;
+  buildInputs = [coreutils];
 }