mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
11 lines
157 B
Nix
11 lines
157 B
Nix
|
{ kde, kdelibs, libkipi }:
|
||
|
|
||
|
kde {
|
||
|
buildInputs = [ kdelibs libkipi ];
|
||
|
|
||
|
meta = {
|
||
|
description = "KDE screenshot utility";
|
||
|
license = "GPLv2";
|
||
|
};
|
||
|
}
|