nixpkgs/pkgs/tools/compression/xz/default.nix

45 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2013-08-26 13:25:51 +01:00
name = "xz-5.0.5";
src = fetchurl {
url = "http://tukaani.org/xz/${name}.tar.bz2";
2013-08-26 13:25:51 +01:00
sha256 = "1404i59bp6rzxya0br1q9njdv32z4sggyfrkjr7vq695hk94hv0n";
};
2014-08-25 14:30:46 +01:00
outputs = [ "dev" "out" "bin" "man" "doc" ];
buildInputs = [ stdenv.hookLib.multiout ];
2013-08-26 11:05:16 +01:00
doCheck = true;
# In stdenv-linux, prevent a dependency on bootstrap-tools.
2014-08-27 00:14:09 +01:00
# The preHook hack no longer worked, no idea why.
postFixup = ''
sed '1s:#!${stdenv.shell}:#!/usr/bin/env sh:' -i "$bin"/bin/*
'';
meta = {
homepage = http://tukaani.org/xz/;
description = "XZ, general-purpose data compression software, successor of LZMA";
longDescription =
'' XZ Utils is free general-purpose data compression software with high
compression ratio. XZ Utils were written for POSIX-like systems,
but also work on some not-so-POSIX systems. XZ Utils are the
successor to LZMA Utils.
The core of the XZ Utils compression code is based on LZMA SDK, but
it has been modified quite a lot to be suitable for XZ Utils. The
primary compression algorithm is currently LZMA2, which is used
inside the .xz container format. With typical files, XZ Utils
create 30 % smaller output than gzip and 15 % smaller output than
bzip2.
'';
2014-01-24 15:27:36 +00:00
license = [ "GPLv2+" "LGPLv2.1+" ];
2013-08-16 22:44:33 +01:00
maintainers = with stdenv.lib.maintainers; [ sander ];
platforms = stdenv.lib.platforms.all;
};
}