mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 19:08:01 +00:00
cgif: init at 0.3.2
This commit is contained in:
parent
e5aa87f731
commit
d1ef125f13
31
pkgs/tools/graphics/cgif/default.nix
Normal file
31
pkgs/tools/graphics/cgif/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user