nixpkgs/pkgs/desktops/kde-4.3/support/qimageblitz/default.nix
Sander van der Burg 379a499dca Updated all KDE support packages required for KDE 4.3
svn path=/nixpkgs/trunk/; revision=16988
2009-09-08 14:38:27 +00:00

18 lines
490 B
Nix

{stdenv, fetchurl, lib, cmake, qt4}:
stdenv.mkDerivation {
name = "qimageblitz-0.0.4";
src = fetchurl {
url = mirror://sourceforge/qimageblitz/qimageblitz-0.0.4.tar.bz2;
md5 = "cb87c7f1c0455e8984ee4830f1e749cf";
};
includeAllQtDirs = true;
buildInputs = [ cmake qt4 ];
meta = {
description = "Graphical effect and filter library for KDE4";
license = "BSD";
homepage = http://qimageblitz.sourceforge.net;
maintainers = [ lib.maintainers.sander ];
};
}