* Sync with the trunk once more.

* Turn on everything in Hydra.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14806
This commit is contained in:
Eelco Dolstra
2009-03-31 15:30:47 +00:00
84 changed files with 1751 additions and 634 deletions
+16
View File
@@ -0,0 +1,16 @@
{ stdenv, fetchurl } :
stdenv.mkDerivation {
name = "pv-1.1.4";
src = fetchurl {
url = http://pipeviewer.googlecode.com/files/pv-1.1.4.tar.bz2;
sha256 = "c8613c240ab4297f6ad346f0047138f551a093c603eeb581d5e83091cad3a559";
};
meta = {
homepage = http://www.ivarch.com/programs/pv;
description = "Tool for monitoring the progress of data through a pipeline";
license = "free";
};
}
+16
View File
@@ -0,0 +1,16 @@
{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo }:
stdenv.mkDerivation {
name = "rrdtool-1.3.6";
src = fetchurl {
url = http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.3.6.tar.gz;
sha256 = "e958760cb0d182c53a878cb2ba5c290c252c2c506082c988e5dd3f3301b895a2";
};
buildInputs = [ gettext perl pkgconfig libxml2 pango cairo ];
meta = {
homepage = http://oss.oetiker.ch/rrdtool/;
description = "High performance logging in Round Robin Databases";
license = "GPL";
};
}