mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
23 lines
262 B
Nix
23 lines
262 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
gpgmepp,
|
|
libgcrypt,
|
|
libsecret,
|
|
kdoctools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kwallet";
|
|
|
|
extraNativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
extraBuildInputs = [
|
|
gpgmepp
|
|
libgcrypt
|
|
libsecret
|
|
kdoctools
|
|
];
|
|
}
|