mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
11 lines
169 B
Nix
11 lines
169 B
Nix
|
{ kde, kdelibs, libgphoto2 }:
|
||
|
|
||
|
kde {
|
||
|
buildInputs = [ kdelibs libgphoto2 ];
|
||
|
|
||
|
meta = {
|
||
|
description = "KDE camera interface library";
|
||
|
license = "GPLv2";
|
||
|
};
|
||
|
}
|