Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 mkDerivation, 3 lib, 4 fetchgit, 5 cmake, 6 extra-cmake-modules, 7 qtbase, 8 boost, 9 gpgme, 10}: 11 12mkDerivation { 13 pname = "kf5gpgmepp"; 14 version = "16.08.3"; 15 16 src = fetchgit { 17 url = "https://anongit.kde.org/gpgmepp.git"; 18 rev = "9826f6674e496ce575f606d17c318566381b3b15"; 19 sha256 = "02ck2l3s8s7xh44blqaqnc5k49ccicdnzvhiwa67a3zgicz5i0vh"; 20 }; 21 22 buildInputs = [ 23 qtbase 24 boost 25 ]; 26 propagatedBuildInputs = [ gpgme ]; 27 28 nativeBuildInputs = [ 29 cmake 30 extra-cmake-modules 31 ]; 32 33 meta = with lib; { 34 license = [ licenses.lgpl2 ]; 35 platforms = platforms.linux; 36 }; 37 38}