summary refs log tree commit diff
path: root/pkgs/tools/compression/lrzip/default.nix
blob: 02f62c3e3c01e84af5cfbe842036cced7372c92d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchurl, zlib, lzo, bzip2, lz4, nasm, perl }:

stdenv.mkDerivation rec {
  pname = "lrzip";
  version = "0.641";

  src = fetchurl {
    url = "http://ck.kolivas.org/apps/lrzip/${pname}-${version}.tar.xz";
    sha256 = "0ziyanspd96dc3lp2qdcylc7aq8dhb511jhqrhxvlp502fjqjqrc";
  };

  buildInputs = [ zlib lzo bzip2 lz4 nasm perl ];

  configureFlags = [
    "--disable-asm"
  ];

  meta = with lib; {
    homepage = "http://ck.kolivas.org/apps/lrzip/";
    description = "The CK LRZIP compression program (LZMA + RZIP)";
    maintainers = with maintainers; [ ];
    license = licenses.gpl2Plus;
    platforms = platforms.unix;
  };
}