about summary refs log tree commit diff
path: root/pkgs/tools/compression/bzip2/default.fix
blob: 1684edd1659fd547a94ef3be036a3c5383ea5f2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "bzip2-1.0.2";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://sources.redhat.com/pub/bzip2/v102/bzip2-1.0.2.tar.gz;
    md5 = "ee76864958d568677f03db8afad92beb";
  };
  stdenv = stdenv;
}