lrzip: cleanup

This commit is contained in:
Sandro Jäckel 2021-07-21 13:41:59 +02:00
parent 40e00bb8d4
commit 8f9e79923c
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,8 +1,8 @@
{lib, stdenv, fetchurl, zlib, lzo, bzip2, lz4, nasm, perl}:
{ lib, stdenv, fetchurl, zlib, lzo, bzip2, lz4, nasm, perl }:
stdenv.mkDerivation rec {
version = "0.641";
pname = "lrzip";
version = "0.641";
src = fetchurl {
url = "http://ck.kolivas.org/apps/lrzip/${pname}-${version}.tar.xz";
@ -15,10 +15,11 @@ stdenv.mkDerivation rec {
"--disable-asm"
];
meta = {
meta = with lib; {
homepage = "http://ck.kolivas.org/apps/lrzip/";
description = "The CK LRZIP compression program (LZMA + RZIP)";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = with maintainers; [ ];
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}