lol
0
fork

Configure Feed

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

at 18.09-beta 25 lines 654 B view raw
1{ stdenv, fetchFromGitHub, lib } : 2 3stdenv.mkDerivation rec { 4 name = "pgpkeyserver-lite-${version}"; 5 version = "2017-07-18"; 6 7 src = fetchFromGitHub { 8 owner = "mattrude"; 9 repo = "pgpkeyserver-lite"; 10 rev = "a038cb7"; 11 sha256 = "12pn92pcpv38b2gmamppn9yzdn7x52pgxnzpal22gqsxwimhs2rx"; 12 }; 13 14 installPhase = '' 15 mkdir -p $out 16 cp -R 404.html assets favicon.ico index.html robots.txt $out 17 ''; 18 19 meta = { 20 homepage = https://github.com/mattrude/pgpkeyserver-lite; 21 description = "A lightweight static front-end for a sks keyserver."; 22 license = lib.licenses.gpl3; 23 maintainers = [ lib.maintainers.calbrecht ]; 24 }; 25}