forked from mirrors/nixpkgs
gzrt: cleanup
This commit is contained in:
parent
a2d112eb4b
commit
9807562b1f
|
@ -1,10 +1,11 @@
|
|||
{ lib, stdenv, fetchurl, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gzrt-0.8";
|
||||
pname = "gzrt";
|
||||
version = "0.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.urbanophile.com/arenn/coding/gzrt/${name}.tar.gz";
|
||||
url = "https://www.urbanophile.com/arenn/coding/gzrt/gzrt-${version}.tar.gz";
|
||||
sha256 = "1vhzazj47xfpbfhzkwalz27cc0n5gazddmj3kynhk0yxv99xrdxh";
|
||||
};
|
||||
|
||||
|
@ -15,10 +16,11 @@ stdenv.mkDerivation rec {
|
|||
cp gzrecover $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.urbanophile.com/arenn/hacking/gzrt/";
|
||||
description = "The gzip Recovery Toolkit";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with maintainers; [ ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue