offzip: init at 0.4.1

This commit is contained in:
Ryan Burns 2023-05-03 22:58:52 -07:00 committed by Anderson Torres
parent 08ba5ce824
commit b52217bb81
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ 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;
};
}

View file

@ -10623,6 +10623,8 @@ with pkgs;
offlineimap = callPackage ../tools/networking/offlineimap { };
offzip = callPackage ../tools/compression/offzip { };
ofono-phonesim = libsForQt5.callPackage ../development/tools/ofono-phonesim { };
ogdf = callPackage ../development/libraries/ogdf { };