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