nixpkgs/pkgs/desktops/kde-4.5/utils/superkaramba.nix
Eelco Dolstra a3fe61586c * Updated KDE to 4.5.5.
* Removed the KDE version number from all expressions except the
  top-level default.nix.  This makes it easier to upgrade.
* Deleted the old l10n versions since there doesn't seem to be a good
  reason to keep them around. 
* Don't use replaceChars (slow!) but do the name sanitization in
  l10n-manifest.sh.

svn path=/nixpkgs/trunk/; revision=25760
2011-02-02 13:54:35 +00:00

18 lines
414 B
Nix

{ kde, cmake, perl, kdelibs, qt4, automoc4, qimageblitz, python }:
kde.package {
buildInputs = [ cmake qt4 perl kdelibs automoc4 qimageblitz python ];
cmakeFlags = "-DBUILD_icons=TRUE -DBULD_plasma=TRUE";
meta = {
description = "A KDE Eye-candy Application";
kde = {
name = "superkaramba";
module = "kdeutils";
version = "0.55";
versionFile = "src/main.cpp";
};
};
}