Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / web-apps / pgpkeyserver-lite / default.nix
blob6568409b11aa379e56a2f1fc7586dee96d782f08
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation {
4   pname = "pgpkeyserver-lite";
5   version = "2017-07-18";
7   src = fetchFromGitHub {
8     owner = "mattrude";
9     repo = "pgpkeyserver-lite";
10     rev = "a038cb7";
11     sha256 = "12pn92pcpv38b2gmamppn9yzdn7x52pgxnzpal22gqsxwimhs2rx";
12   };
14   installPhase = ''
15     mkdir -p $out
16     cp -R 404.html assets favicon.ico index.html robots.txt $out
17   '';
19   meta = with lib; {
20     homepage = "https://github.com/mattrude/pgpkeyserver-lite";
21     description = "Lightweight static front-end for a sks keyserver";
22     license = licenses.gpl3;
23     maintainers = with maintainers; [ calbrecht ];
24   };