summary refs log tree commit diff
path: root/pkgs/tools/compression/lbzip2/default.nix
blob: cf616a21e0aaf0c81a040c3e15a6fb3dfafb35ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "lbzip2-2.5";

  src = fetchurl {
    url = "http://archive.lbzip2.org/${name}.tar.gz";
    sha256 = "1sahaqc5bw4i0iyri05syfza4ncf5cml89an033fspn97klmxis6";
  };

  meta = with stdenv.lib; {
    homepage = http://lbzip2.org/;
    description = "Parallel bzip2 compression utility";
    license = licenses.gpl3;
    maintainers = with maintainers; [ abbradar ];
    platforms = platforms.unix;
  };
}