package.nix (726B)
1 { 2 lib, 3 stdenv, 4 libgit2, 5 fetchFromGitea, 6 }: 7 8 stdenv.mkDerivation { 9 pname = "stagit-gemini"; 10 version = "2020-01-18"; 11 12 __structuredAttrs = true; 13 14 src = fetchFromGitea { 15 domain = "git.rawtext.club"; 16 owner = "sloum"; 17 repo = "stagit-gemini"; 18 rev = "2710449792748ac3fefe4ba2500afce1ed193e37"; 19 hash = "sha256-Tm9jXkGtUNeZNhtHjozWN35z8gL/KcACLvby2Z73vxU="; 20 }; 21 22 makeFlags = [ "PREFIX=$(out)" ]; 23 24 buildInputs = [ libgit2 ]; 25 26 meta = { 27 description = "Fork of stagit-gopher that ports the output to gemini"; 28 homepage = "https://git.rawtext.club/sloum/stagit-gemini"; 29 license = lib.licenses.mit; 30 platforms = lib.platforms.unix; 31 maintainers = [ lib.maintainers.sikmir ]; 32 }; 33 }
