mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
14 lines
151 B
Nix
14 lines
151 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qttools,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kirigami-gallery";
|
|
|
|
extraNativeBuildInputs = [
|
|
qtsvg
|
|
qttools
|
|
];
|
|
}
|