mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 08:14:19 +00:00
32 lines
381 B
Nix
32 lines
381 B
Nix
|
{ mkDerivation
|
||
|
, lib
|
||
|
, automoc4
|
||
|
, cmake
|
||
|
, perl
|
||
|
, pkgconfig
|
||
|
, boost
|
||
|
, gpgme
|
||
|
, kdelibs
|
||
|
, kdepimlibs
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "kgpg";
|
||
|
nativeBuildInputs = [
|
||
|
automoc4
|
||
|
cmake
|
||
|
perl
|
||
|
pkgconfig
|
||
|
];
|
||
|
buildInputs = [
|
||
|
boost
|
||
|
gpgme
|
||
|
kdelibs
|
||
|
kdepimlibs
|
||
|
];
|
||
|
meta = {
|
||
|
license = [ lib.licenses.gpl2 ];
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|