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

stdenv.mkDerivation {
  name = "xz";
  
  src = fetchurl {
    url = http://tukaani.org/xz/xz-4.999.9beta.tar.bz2;
    sha256 = "0p51d9jng9vfh56idhjbc40n3ypapznwfb1npsvxh23n772140rk";
  };

  meta = {
    homepage = http://tukaani.org/xz/;
    description = "Successor of the LZMA Utils package";
    license = "GPL/LGPL";
    maintainers = [ lib.maintainers.sander ];
  };
}