nixpkgs/pkgs/servers/sks/default.nix

53 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromBitbucket, ocaml, zlib, db, perl, camlp4 }:
2016-11-28 02:28:40 +00:00
stdenv.mkDerivation rec {
pname = "sks";
2016-11-28 02:28:40 +00:00
version = "1.1.6";
src = fetchFromBitbucket {
owner = "skskeyserver";
repo = "sks-keyserver";
2019-09-08 23:38:31 +00:00
rev = version;
2016-11-28 02:28:40 +00:00
sha256 = "00q5ma5rvl10rkc6cdw8d69bddgrmvy0ckqj3hbisy65l4idj2zm";
};
# pkgs.db provides db_stat, not db$major.$minor_stat
patches = [ ./adapt-to-nixos.patch ];
outputs = [ "out" "webSamples" ];
2017-10-24 11:10:42 +00:00
buildInputs = [ ocaml zlib db perl camlp4 ];
2016-11-28 02:28:40 +00:00
makeFlags = [ "PREFIX=$(out)" "MANDIR=$(out)/share/man" ];
preConfigure = ''
cp Makefile.local.unused Makefile.local
sed -i \
2017-10-24 11:10:42 +00:00
-e "s:^LIBDB=.*$:LIBDB=-ldb:g" \
2016-11-28 02:28:40 +00:00
Makefile.local
'';
preBuild = "make dep";
doCheck = true;
checkPhase = "./sks unit_test";
# Copy the web examples for the NixOS module
postInstall = "cp -R sampleWeb $webSamples";
meta = with lib; {
2017-10-24 11:10:42 +00:00
description = "An easily deployable & decentralized OpenPGP keyserver";
2016-11-28 02:28:40 +00:00
longDescription = ''
SKS is an OpenPGP keyserver whose goal is to provide easy to deploy,
decentralized, and highly reliable synchronization. That means that a key
submitted to one SKS server will quickly be distributed to all key
servers, and even wildly out-of-date servers, or servers that experience
spotty connectivity, can fully synchronize with rest of the system.
'';
inherit (src.meta) homepage;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos fpletz globin ];
2016-11-28 02:28:40 +00:00
};
}