Merging from trunk. I had to give away some structure to build the native

sheevaplug kernel, so the kernel does not build in the sheevaplug right now.
I will try to fix that in next commits.


svn path=/nixpkgs/branches/stdenv-updates/; revision=19045
This commit is contained in:
Lluís Batlle i Rossell
2009-12-19 11:14:16 +00:00
62 changed files with 1821 additions and 42112 deletions
+26
View File
@@ -0,0 +1,26 @@
{stdenv, fetchurl, bzip2}:
let name = "pbzip2";
version = "1.0.5";
in
stdenv.mkDerivation {
name = name + "-" + version;
src = fetchurl {
url = "http://compression.ca/${name}/${name}-${version}.tar.gz";
sha256 = "0vc9r6b2djhpwslavi2ykv6lk8pwf4lqb107lmapw2q8d658qpa1";
};
buildInputs = [ bzip2 ];
installPhase = ''
make install PREFIX=$out
'';
meta = {
homepage = http://compression.ca/pbzip2/;
description = "A parallel implementation of bzip2 for multi-core machines";
license = "free";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}