mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
12 lines
246 B
Nix
12 lines
246 B
Nix
|
{ stdenv, kde, kdelibs, baloo, kfilemetadata, pkgconfig }:
|
||
|
|
||
|
kde {
|
||
|
buildInputs = [ kdelibs baloo kfilemetadata ];
|
||
|
nativeBuildInputs = [ pkgconfig ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Baloo Widgets";
|
||
|
license = stdenv.lib.licenses.gpl2;
|
||
|
};
|
||
|
}
|