mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 11:02:05 +00:00
22ab3fe1ab
svn path=/nixpkgs/branches/kde-4.7/; revision=27645
16 lines
292 B
Nix
16 lines
292 B
Nix
{ kde, cmake, kdelibs, automoc4 }:
|
|
|
|
kde.package {
|
|
buildInputs = [ cmake kdelibs automoc4 ];
|
|
|
|
meta = {
|
|
description = "KDE creature for your desktop";
|
|
kde = {
|
|
name = "amor";
|
|
module = "kdetoys";
|
|
version = "2.4.0";
|
|
versionFile = "src/version.h";
|
|
};
|
|
};
|
|
}
|