3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
12 lines
271 B
Nix
12 lines
271 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "bzip2-1.0.3";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/bzip2-1.0.3.tar.gz;
|
|
md5 = "8a716bebecb6e647d2e8a29ea5d8447f";
|
|
};
|
|
patches = [./bzip2-1.0.3-static.patch];
|
|
}
|