* Delete some obsolete packages.

* Make sure that every package in all-packages.nix has a unique name.
  Not all of them do, but there are now a few helper functions that
  modify the name of a package for display purposes in nix-env (e.g.,
  you get "zlib-1.2.3" and "zlib-1.2.3-static" in "nix-env -qa").

svn path=/nixpkgs/trunk/; revision=8607
This commit is contained in:
Eelco Dolstra
2007-04-26 13:02:30 +00:00
parent c182d49c51
commit 168a93adc5
12 changed files with 53 additions and 142 deletions
-5
View File
@@ -1,5 +0,0 @@
source $stdenv/setup
source $makeWrapper
makeWrapper "$grub/sbin/grub-install" "$out/sbin/grub-install" \
--suffix-each PATH ':' "$diffutils/bin $gnused/bin $gnugrep/bin $coreutils/bin"
-10
View File
@@ -1,10 +0,0 @@
{stdenv, grub, diffutils, gnused, gnugrep, coreutils}:
stdenv.mkDerivation {
name = grub.name;
builder = ./builder.sh;
makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
inherit grub diffutils gnused gnugrep coreutils;
}