mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
lrzip: cleanup
This commit is contained in:
parent
40e00bb8d4
commit
8f9e79923c
1 changed files with 6 additions and 5 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue