* 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
+17
View File
@@ -0,0 +1,17 @@
{stdenv, fetchurl, lzo}:
stdenv.mkDerivation {
name = "lzop-1.02rc1";
src = fetchurl {
url = http://www.lzop.org/download/lzop-1.02rc1.tar.gz;
sha256 = "1dc32bfd82b130727bcec1de3b8a7cf090b78b3f14981d375ceb862b1e0e6873";
};
buildInputs = [ lzo ];
meta = {
homepage = http://www.lzop.org;
description = "Fast file compressor";
license = "GPL";
};
}
+20
View File
@@ -0,0 +1,20 @@
{stdenv, fetchurl, ucl, zlib}:
stdenv.mkDerivation {
name = "upx-3.03";
src = fetchurl {
url = http://upx.sourceforge.net/download/upx-3.03-src.tar.bz2;
sha256 = "a04b0decd01d3ca194b9553c7bbf8a01bc17e0e06eb0850f4271bba783143d7b";
};
buildInputs = [ ucl zlib ];
preConfigure = "cd src";
installPhase = "ensureDir $out/bin ; cp upx.out $out/bin/upx";
meta = {
homepage = http://upx.sourceforge.net/;
description = "The Ultimate Packer for eXecutables";
license = "GPLv2+";
};
}