about summary refs log tree commit diff
path: root/pkgs/tools/compression/bzip2-static/default.nix
blob: f5c14266d0ae145a8f4b4d36a7e499ace1aa9e2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{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];
}