Updating from trunk. I only had to take away the usual stdenv2 in

all-packages.nix


svn path=/nixpkgs/branches/stdenv-updates/; revision=24553
This commit is contained in:
Lluís Batlle i Rossell
2010-10-31 19:30:31 +00:00
47 changed files with 803 additions and 150 deletions
+31
View File
@@ -0,0 +1,31 @@
{ stdenv, fetchurl, fam }:
stdenv.mkDerivation {
name = "fileschanged-0.6.9";
src = fetchurl {
url = "http://nongnu.askapache.com/fileschanged/fileschanged-0.6.9.tar.gz";
sha256 = "0ajc9h023vzpnlqqjli4wbvs0q36nr5p9msc3wzbic8rk687qcxc";
};
buildInputs = [ fam ];
doCheck = true;
meta = {
homepage = "http://www.nongnu.org/fileschanged/";
description = "A command-line utility that reports when files have been altered.";
license = "GPL";
longDescription = ''
This utility is a client to FAM (File Alteration Monitor) servers
like FAM or Gamin. You give it some filenames on the command line
and then it monitors those files for changes. When it discovers
that a file has been altered, it displays the filename on the
standard-output or executes a given command.
'';
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.simons ];
};
}
-18
View File
@@ -1,18 +0,0 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation rec {
name = "psmisc-22.12";
src = fetchurl {
url = "mirror://sourceforge/psmisc/${name}.tar.gz";
sha256 = "0ykak6gf835xj0wksqbw2rjny958prayhm2fv6r3fqfs06jl2bxs";
};
buildInputs = [ncurses];
meta = {
homepage = http://psmisc.sourceforge.net/;
description = "A set of small useful utilities that use the proc filesystem (such as fuser, killall and pstree)";
platforms = stdenv.lib.platforms.linux;
};
}