zoxide: 0.9.6 -> 0.9.7 (#380745)
[NixPkgs.git] / pkgs / by-name / pg / pgpkeyserver-lite / package.nix
blobf15cb0c9b29e6de4217044e8a3dc8b338b4aae68
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation {
8   pname = "pgpkeyserver-lite";
9   version = "2017-07-18";
11   src = fetchFromGitHub {
12     owner = "mattrude";
13     repo = "pgpkeyserver-lite";
14     rev = "a038cb7";
15     sha256 = "12pn92pcpv38b2gmamppn9yzdn7x52pgxnzpal22gqsxwimhs2rx";
16   };
18   installPhase = ''
19     mkdir -p $out
20     cp -R 404.html assets favicon.ico index.html robots.txt $out
21   '';
23   meta = with lib; {
24     homepage = "https://github.com/mattrude/pgpkeyserver-lite";
25     description = "Lightweight static front-end for a sks keyserver";
26     license = licenses.gpl3;
27     maintainers = with maintainers; [ calbrecht ];
28   };