mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
14 lines
148 B
Nix
14 lines
148 B
Nix
{
|
|
mkKdeDerivation,
|
|
libgcrypt,
|
|
kdoctools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kwallet";
|
|
|
|
extraBuildInputs = [
|
|
libgcrypt
|
|
kdoctools
|
|
];
|
|
}
|