Merge pull request #153241 from AndersonTorres/new-zoo

unzoo: init at 4.4
main
Anderson Torres 2 years ago committed by GitHub
commit 74f542c42e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 44
      pkgs/tools/archivers/unzoo/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,44 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "unzoo";
version = "4.4";
src = fetchFromGitHub {
owner = "museoa";
repo = pname;
rev = version;
hash = "sha256-oPq1I7EsvHaJ7anHbm/KWrYrxJkM79rLhgRfSAdoLtk=";
};
outputs = [ "out" "doc" ];
buildPhase = ''
runHook preBuild
${stdenv.cc.targetPrefix}cc -o unzoo -DSYS_IS_UNIX src/unzoo.c
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin $doc/share/doc/${pname}
cp unzoo $out/bin
cp README.TXT $doc/share/doc/${pname}
runHook postInstall
'';
meta = with lib; {
homepage = "http://github.com/museoa/unzoo/";
description = "Manipulate archives of files in Zoo compressed form";
license = licenses.publicDomain;
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.all;
};
}

@ -9383,6 +9383,8 @@ with pkgs;
runzip = callPackage ../tools/archivers/runzip { };
unzoo = callPackage ../tools/archivers/unzoo { };
ruplacer = callPackage ../tools/text/ruplacer {
inherit (darwin.apple_sdk.frameworks) Security;
};

Loading…
Cancel
Save