Move qimageblitz outside of kde-4.x
svn path=/nixpkgs/trunk/; revision=26056
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
{stdenv, fetchurl, lib, cmake, qt4}:
|
||||
|
||||
let
|
||||
pn = "qimageblitz";
|
||||
v = "0.0.4";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "${pn}-${v}";
|
||||
src = fetchurl {
|
||||
url = "mirror://sf/${pn}/${pn}-${v}.tar.bz2";
|
||||
sha256 = "0pnaf3qi7rgkxzs2mssmslb3f9ya4cyx09wzwlis3ppyvf72j0p9";
|
||||
};
|
||||
buildInputs = [ cmake qt4 ];
|
||||
|
||||
meta = {
|
||||
description = "Graphical effect and filter library for KDE4";
|
||||
license = "BSD";
|
||||
homepage = "http://${pn}.sourceforge.net";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user