forked from mirrors/nixpkgs
lzop: cleanup
This commit is contained in:
parent
8f9e79923c
commit
75286ae016
1 changed files with 6 additions and 3 deletions
|
@ -1,9 +1,11 @@
|
||||||
{lib, stdenv, fetchurl, lzo}:
|
{ lib, stdenv, fetchurl, lzo }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "lzop-1.04";
|
pname = "lzop";
|
||||||
|
version = "1.04";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.lzop.org/download/${name}.tar.gz";
|
url = "https://www.lzop.org/download/lzop-${version}.tar.gz";
|
||||||
sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky";
|
sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -12,6 +14,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://www.lzop.org";
|
homepage = "http://www.lzop.org";
|
||||||
description = "Fast file compressor";
|
description = "Fast file compressor";
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue