nixpkgs/pkgs/tools/compression/offzip/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
735 B
Nix
Raw Normal View History

2023-05-04 05:58:52 +00:00
{ lib
, stdenv
, fetchzip
, zlib
}:
stdenv.mkDerivation rec {
pname = "offzip";
version = "0.4.1";
src = fetchzip {
url = "https://web.archive.org/web/20230419080810/https://aluigi.altervista.org/mytoolz/offzip.zip";
hash = "sha256-dmYeSdtNvx6FBuyCdiu+q1ExEfgN8fDO8coyJmFrjKY=";
stripRoot = false;
};
buildInputs = [
zlib
];
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = with lib; {
description = "A tool to unpack the zip data contained in any type of file";
homepage = "https://aluigi.altervista.org/mytoolz.htm#offzip";
license = lib.licenses.gpl2Plus;
maintainers = with maintainers; [ r-burns ];
platforms = platforms.unix;
2023-11-23 02:51:17 +00:00
mainProgram = "offzip";
2023-05-04 05:58:52 +00:00
};
}