lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

sks: build with default db version

+5 -6
+5 -6
pkgs/servers/sks/default.nix
··· 1 - { stdenv, fetchFromBitbucket, ocaml, zlib, db48, perl, camlp4 }: 1 + { stdenv, fetchFromBitbucket, ocaml, zlib, db, perl, camlp4 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "sks-${version}"; ··· 11 11 sha256 = "00q5ma5rvl10rkc6cdw8d69bddgrmvy0ckqj3hbisy65l4idj2zm"; 12 12 }; 13 13 14 - buildInputs = [ ocaml zlib db48 perl camlp4 ]; 14 + buildInputs = [ ocaml zlib db perl camlp4 ]; 15 15 16 16 makeFlags = [ "PREFIX=$(out)" "MANDIR=$(out)/share/man" ]; 17 17 preConfigure = '' 18 18 cp Makefile.local.unused Makefile.local 19 19 sed -i \ 20 - -e "s:^LIBDB=.*$:LIBDB=-ldb-4.8:g" \ 20 + -e "s:^LIBDB=.*$:LIBDB=-ldb:g" \ 21 21 Makefile.local 22 22 ''; 23 23 ··· 27 27 checkPhase = "./sks unit_test"; 28 28 29 29 meta = with stdenv.lib; { 30 - description = "An OpenPGP keyserver whose goal is to provide easy to 31 - deploy, decentralized, and highly reliable synchronization"; 30 + description = "An easily deployable & decentralized OpenPGP keyserver"; 32 31 longDescription = '' 33 32 SKS is an OpenPGP keyserver whose goal is to provide easy to deploy, 34 33 decentralized, and highly reliable synchronization. That means that a key ··· 39 38 inherit (src.meta) homepage; 40 39 license = licenses.gpl2; 41 40 platforms = platforms.linux; 42 - maintainers = with maintainers; [ primeos ]; 41 + maintainers = with maintainers; [ primeos fpletz ]; 43 42 }; 44 43 } 45 44