Added kile editor
svn path=/nixpkgs/trunk/; revision=11665
This commit is contained in:
parent
fda958f307
commit
ccb0730d5e
2 changed files with 18 additions and 0 deletions
12
pkgs/applications/editors/kile/default.nix
Normal file
12
pkgs/applications/editors/kile/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, perl, arts, qt, kdelibs, libX11, libXt, libXext, zlib, libpng, libjpeg, freetype, expat }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kile-2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://heanet.dl.sourceforge.net/sourceforge/kile/kile-2.0.tar.bz2;
|
||||
sha256 = "14a7e4605a3ee486b9a7c11e9bd3236bdbd34955d5522eac5da1e511dea6c7e2";
|
||||
};
|
||||
|
||||
buildInputs = [ perl arts qt kdelibs libX11 libXt libXext zlib libpng libjpeg freetype expat ];
|
||||
}
|
|
@ -5337,6 +5337,12 @@ let pkgs = rec {
|
|||
# inherit ffmpeg2theora sox, vorbis-tools lame mjpegtools dvdauthor 'Q'dvdauthor growisofs mencoder;
|
||||
};
|
||||
|
||||
kile = import ../applications/editors/kile {
|
||||
inherit stdenv fetchurl perl arts kdelibs zlib libpng libjpeg freetype expat;
|
||||
inherit (xlibs) libX11 libXt libXext;
|
||||
qt = qt3;
|
||||
};
|
||||
|
||||
/*kiwixBuilderFun = lib.sumArgs (import ../applications/misc/kiwixbuilder) {
|
||||
inherit builderDefs;
|
||||
inherit (gnome) glib;
|
||||
|
|
Loading…
Reference in a new issue