cgif: init at 0.3.2

This commit is contained in:
adisbladis 2023-07-12 20:18:25 +12:00
parent e5aa87f731
commit d1ef125f13
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv
, fetchFromGitHub
, lib
, meson
, ninja
}:
stdenv.mkDerivation (finalAttrs: {
pname = "cgif";
version = "0.3.2";
src = fetchFromGitHub {
owner = "dloebl";
repo = "cgif";
rev = "V${finalAttrs.version}";
sha256 = "sha256-FvqpToIVYblpuRWeEaUA8MA2Bnp9dpqGquylnXevhX4=";
};
nativeBuildInputs = [
meson
ninja
];
meta = {
homepage = "https://github.com/dloebl/cgif";
description = "CGIF, a GIF encoder written in C.";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
platforms = lib.platforms.unix;
};
})

View File

@ -30289,6 +30289,8 @@ with pkgs;
boops = callPackage ../applications/audio/boops { };
cgif = callPackage ../tools/graphics/cgif { };
ChowCentaur = callPackage ../applications/audio/ChowCentaur { };
ChowKick = callPackage ../applications/audio/ChowKick { };