pngloss: init at unstable-2020-11-25
This commit is contained in:
parent
64eb5ec863
commit
47d35130e1
2 changed files with 37 additions and 0 deletions
35
pkgs/tools/graphics/pngloss/default.nix
Normal file
35
pkgs/tools/graphics/pngloss/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, libpng, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pngloss";
|
||||
version = "unstable-2020-11-25";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "foobaz";
|
||||
repo = pname;
|
||||
rev = "559f09437e1c797a1eaf08dfdcddd9b082f0e09c";
|
||||
sha256 = "sha256-dqrrzbLu4znyWOlTDIf56O3efxszetiP+CdFiy2PBd4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [
|
||||
libpng
|
||||
zlib
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
install -D ./src/pngloss $out/bin/pngloss
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lossy compression of PNG images";
|
||||
homepage = "https://github.com/foobaz/pngloss";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ _2gn ];
|
||||
};
|
||||
}
|
|
@ -9370,6 +9370,8 @@ with pkgs;
|
|||
|
||||
p0f = callPackage ../tools/security/p0f { };
|
||||
|
||||
pngloss = callPackage ../tools/graphics/pngloss { };
|
||||
|
||||
pngout = callPackage ../tools/graphics/pngout { };
|
||||
|
||||
patch = gnupatch;
|
||||
|
|
Loading…
Reference in a new issue