mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 14:57:28 +03:00
11 lines
194 B
Nix
11 lines
194 B
Nix
|
{ stdenv, kde, kdelibs, libgphoto2 }:
|
||
|
|
||
|
kde {
|
||
|
buildInputs = [ kdelibs libgphoto2 ];
|
||
|
|
||
|
meta = {
|
||
|
description = "KDE camera interface library";
|
||
|
license = stdenv.lib.licenses.gpl2;
|
||
|
};
|
||
|
}
|