depot/third_party/nixpkgs/pkgs/applications/graphics/apngasm/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
690 B
Nix

{ stdenv, fetchFromGitHub, cmake, boost, libpng, zlib }:
stdenv.mkDerivation rec {
pname = "apngasm";
version = "3.1.9";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "d50bfb0cf14c376f4cfb94eb91c61d795a76b715"; # not tagged, but in debian/changelog
sha256 = "0pk0r8x1950pm6j3d5wgryvy3ldm7a9gl59jmnwnjmg1sf9mzf97";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost libpng zlib ];
meta = with stdenv.lib; {
description = "Create an APNG from multiple PNG files";
homepage = "https://github.com/apngasm/apngasm";
license = licenses.zlib;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}