mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +00:00
16 lines
306 B
Nix
16 lines
306 B
Nix
{ cmake, kde, qt4, automoc4, kdelibs, phonon }:
|
|
|
|
kde.package rec {
|
|
name = "kde-wallpapers-${kde.release}";
|
|
|
|
buildInputs = [ cmake qt4 automoc4 kdelibs phonon ];
|
|
|
|
meta = {
|
|
description = "Additional KDE wallpapers";
|
|
kde = {
|
|
name = "wallpapers";
|
|
module = "kdeartwork";
|
|
};
|
|
};
|
|
}
|