Added lsof in package collection

svn path=/nixpkgs/trunk/; revision=8886
This commit is contained in:
Michael Raskin 2007-06-17 22:44:30 +00:00
parent 54061e6173
commit 84649f5303
2 changed files with 9 additions and 4 deletions

View File

@ -1,9 +1,9 @@
pkgs:
pkgs.stdenv.mkDerivation {
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "lsof";
src = pkgs.fetchurl {
src = fetchurl {
url = ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_4.78.tar.bz2;
sha256 = "0azvl43niqkq94drx52p6dvp70r38f25fqw181ywmvqn80dbb3c9";
};

View File

@ -1082,6 +1082,10 @@ rec {
inherit fetchurl stdenv perl m4;
};
lsof = import ../development/tools/misc/lsof {
inherit fetchurl stdenv;
};
mk = import ../development/tools/build-managers/mk {
inherit fetchurl stdenv;
};
@ -2170,7 +2174,8 @@ rec {
};
vsftpd = import ../servers/ftp/vsftpd {
inherit fetchurl stdenv openssl ;
inherit fetchurl openssl ;
stdenv = overrideGCC stdenv gcc295 ;
};
xorg = recurseIntoAttrs (import ../servers/x11/xorg {