2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2017-08-22 11:27:00 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pgpkeyserver-lite";
|
2017-08-22 11:27:00 +01:00
|
|
|
version = "2017-07-18";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mattrude";
|
|
|
|
repo = "pgpkeyserver-lite";
|
|
|
|
rev = "a038cb7";
|
|
|
|
sha256 = "12pn92pcpv38b2gmamppn9yzdn7x52pgxnzpal22gqsxwimhs2rx";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -R 404.html assets favicon.ico index.html robots.txt $out
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/mattrude/pgpkeyserver-lite";
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "A lightweight static front-end for a sks keyserver";
|
2019-08-20 18:36:05 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ calbrecht globin ];
|
2017-08-22 11:27:00 +01:00
|
|
|
};
|
|
|
|
}
|