12 lines
226 B
Nix
12 lines
226 B
Nix
{ kde, kdelibs, qimageblitz, python }:
|
|
|
|
kde {
|
|
buildInputs = [ kdelibs qimageblitz python ];
|
|
|
|
cmakeFlags = [ "-DBUILD_icons=TRUE" "-DBUILD_plasma=TRUE" ];
|
|
|
|
meta = {
|
|
description = "A KDE Eye-candy Application";
|
|
};
|
|
}
|