mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
16 lines
358 B
Nix
16 lines
358 B
Nix
{
|
|
mkDerivation, lib, extra-cmake-modules
|
|
, qtbase, karchive, shared-mime-info
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kpkpass";
|
|
meta = {
|
|
license = with lib.licenses; [ lgpl21 ];
|
|
maintainers = [ lib.maintainers.bkchr ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules shared-mime-info ];
|
|
buildInputs = [ qtbase karchive ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|