lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 31 lines 591 B view raw
1{ stdenv 2, fetchFromGitHub 3, lib 4, meson 5, ninja 6}: 7 8stdenv.mkDerivation (finalAttrs: { 9 pname = "cgif"; 10 version = "0.3.2"; 11 12 src = fetchFromGitHub { 13 owner = "dloebl"; 14 repo = "cgif"; 15 rev = "V${finalAttrs.version}"; 16 sha256 = "sha256-FvqpToIVYblpuRWeEaUA8MA2Bnp9dpqGquylnXevhX4="; 17 }; 18 19 nativeBuildInputs = [ 20 meson 21 ninja 22 ]; 23 24 meta = { 25 homepage = "https://github.com/dloebl/cgif"; 26 description = "CGIF, a GIF encoder written in C."; 27 license = lib.licenses.mit; 28 maintainers = with lib.maintainers; [ ]; 29 platforms = lib.platforms.unix; 30 }; 31})