mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
22 lines
396 B
Nix
22 lines
396 B
Nix
{ fetchurl, kde, kdelibs }:
|
|
|
|
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 ];
|
|
|
|
meta = {
|
|
description = "KDE activities library and daemon";
|
|
};
|
|
}
|