mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
17 lines
231 B
Nix
17 lines
231 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
pkg-config,
|
|
libsodium,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "keysmith";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
libsodium
|
|
];
|
|
meta.mainProgram = "keysmith";
|
|
}
|