forked from mirrors/nixpkgs
sks: init at 1.1.6 (#20717)
This commit is contained in:
parent
dfb354ea7d
commit
9538176042
45
pkgs/servers/sks/default.nix
Normal file
45
pkgs/servers/sks/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ stdenv, fetchFromBitbucket, ocaml, zlib, db48, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sks-${version}";
|
||||
version = "1.1.6";
|
||||
|
||||
src = fetchFromBitbucket {
|
||||
owner = "skskeyserver";
|
||||
repo = "sks-keyserver";
|
||||
rev = "${version}";
|
||||
sha256 = "00q5ma5rvl10rkc6cdw8d69bddgrmvy0ckqj3hbisy65l4idj2zm";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml zlib db48 perl ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" "MANDIR=$(out)/share/man" ];
|
||||
preConfigure = ''
|
||||
cp Makefile.local.unused Makefile.local
|
||||
sed -i \
|
||||
-e "s:^LIBDB=.*$:LIBDB=-ldb-4.8:g" \
|
||||
Makefile.local
|
||||
'';
|
||||
|
||||
preBuild = "make dep";
|
||||
|
||||
doCheck = true;
|
||||
checkPhase = "./sks unit_test";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An OpenPGP keyserver whose goal is to provide easy to
|
||||
deploy, decentralized, and highly reliable synchronization";
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -3684,6 +3684,8 @@ in
|
|||
|
||||
skippy-xd = callPackage ../tools/X11/skippy-xd {};
|
||||
|
||||
sks = callPackage ../servers/sks { };
|
||||
|
||||
skydns = callPackage ../servers/skydns { };
|
||||
|
||||
sipcalc = callPackage ../tools/networking/sipcalc { };
|
||||
|
|
Loading…
Reference in a new issue