nixpkgs/pkgs/tools/compression/gzrt/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

28 lines
650 B
Nix

{ lib, stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
pname = "gzrt";
version = "0.8";
src = fetchurl {
url = "https://www.urbanophile.com/arenn/coding/gzrt/gzrt-${version}.tar.gz";
sha256 = "1vhzazj47xfpbfhzkwalz27cc0n5gazddmj3kynhk0yxv99xrdxh";
};
buildInputs = [ zlib ];
installPhase = ''
mkdir -p $out/bin
cp gzrecover $out/bin
'';
meta = with lib; {
homepage = "https://www.urbanophile.com/arenn/hacking/gzrt/";
description = "Gzip Recovery Toolkit";
maintainers = with maintainers; [ ];
mainProgram = "gzrecover";
license = licenses.gpl2Plus;
platforms = platforms.unix;
};
}