d65af13533
Obviously there are more improvements that can be done here, especially moving headers to .dev, but that's not entirely trivial and probably not worth it since kde4 is old.
22 lines
423 B
Nix
22 lines
423 B
Nix
{ fetchurl, kde, kdelibs, nepomuk_core }:
|
|
|
|
kde {
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/4.13.3/src/kactivities-4.13.3.tar.xz";
|
|
sha256 = "12l9brpq8mr9hqqmnlz9xfsfr8ry6283b32nfqfx0p3f7w19vjy7";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
outputInclude = "out";
|
|
|
|
setOutputFlags = false;
|
|
|
|
propagatedBuildInputs = [ kdelibs nepomuk_core ];
|
|
|
|
meta = {
|
|
description = "KDE activities library and daemon";
|
|
};
|
|
}
|