linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / kf5gpgmepp / default.nix
blob32aa17e687eb219ffac342a55d268ecd32eedbd6
1 { mkDerivation, lib, fetchgit, cmake, extra-cmake-modules, qtbase, boost, gpgme }:
3 mkDerivation {
4   pname = "kf5gpgmepp";
5   version = "16.08.3";
7   src = fetchgit {
8     url = "https://anongit.kde.org/gpgmepp.git";
9     rev = "9826f6674e496ce575f606d17c318566381b3b15";
10     sha256 = "02ck2l3s8s7xh44blqaqnc5k49ccicdnzvhiwa67a3zgicz5i0vh";
11   };
13   buildInputs = [ extra-cmake-modules qtbase boost ];
14   propagatedBuildInputs = [ gpgme ];
16   nativeBuildInputs = [ cmake ];
18   meta = with lib; {
19     license = [ licenses.lgpl2 ];
20     maintainers = [ maintainers.ehmry ];
21     platforms = platforms.linux;
22   };