summary refs log tree commit diff
path: root/pkgs/tools/compression/gzrt/default.nix
blob: 6ce50bb3d996ab986541ce9aead63592668e0483 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, zlib }:

stdenv.mkDerivation rec {
  name = "gzrt-0.8";

  src = fetchurl {
    url = "https://www.urbanophile.com/arenn/coding/gzrt/${name}.tar.gz";
    sha256 = "1vhzazj47xfpbfhzkwalz27cc0n5gazddmj3kynhk0yxv99xrdxh";
  };

  buildInputs = [ zlib ];

  installPhase = ''
    mkdir -p $out/bin
    cp gzrecover $out/bin
  '';

  meta = {
    homepage = https://www.urbanophile.com/arenn/hacking/gzrt/;
    description = "The gzip Recovery Toolkit";
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.unix;
  };
}