12 lines
186 B
Nix
12 lines
186 B
Nix
|
{ stdenv, kde, kdelibs, nepomuk_core }:
|
||
|
|
||
|
kde {
|
||
|
|
||
|
buildInputs = [ kdelibs nepomuk_core ];
|
||
|
|
||
|
meta = {
|
||
|
description = "NEPOMUK Widgets";
|
||
|
license = stdenv.lib.licenses.gpl2;
|
||
|
};
|
||
|
}
|