nixpkgs/pkgs/tools/compression/bzip2-static/default.nix

12 lines
271 B
Nix
Raw Normal View History

{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];
}