mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
d611b0aedb
svn path=/nixpkgs/trunk/; revision=23752
15 lines
325 B
Nix
15 lines
325 B
Nix
{ cmake, kde, automoc4, kdelibs }:
|
|
|
|
kde.package rec {
|
|
name = "kde-emotion-icons-${meta.kde.version}";
|
|
|
|
buildInputs = [ cmake automoc4 kdelibs ];
|
|
meta = {
|
|
description = "Additional KDE emotion icons (smiles)";
|
|
kde = {
|
|
name = "emoticons";
|
|
module = "kdeartwork";
|
|
version = "4.5.1";
|
|
};
|
|
};
|
|
}
|