about summary refs log tree commit diff
path: root/pkgs/applications/editors/kile
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-04 11:12:11 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-04 11:12:11 +0000
commitdd19f22e7e4599aeeba6baa4e46619f300d32eb4 (patch)
tree11201c065d640332d93bbd81ae9566c3e15f8244 /pkgs/applications/editors/kile
parente413faa019c1f14e577971b517bc353a34e7d961 (diff)
Add kde4.kile
svn path=/nixpkgs/trunk/; revision=29622
Diffstat (limited to 'pkgs/applications/editors/kile')
-rw-r--r--pkgs/applications/editors/kile/2.0.nix (renamed from pkgs/applications/editors/kile/default.nix)0
-rw-r--r--pkgs/applications/editors/kile/2.1.nix21
2 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/editors/kile/default.nix b/pkgs/applications/editors/kile/2.0.nix
index 704b8e1b82494..704b8e1b82494 100644
--- a/pkgs/applications/editors/kile/default.nix
+++ b/pkgs/applications/editors/kile/2.0.nix
diff --git a/pkgs/applications/editors/kile/2.1.nix b/pkgs/applications/editors/kile/2.1.nix
new file mode 100644
index 0000000000000..c2d2167e3ddcd
--- /dev/null
+++ b/pkgs/applications/editors/kile/2.1.nix
@@ -0,0 +1,21 @@
+{stdenv, fetchurl, kdelibs, cmake, gettext }:
+
+stdenv.mkDerivation rec {
+  name = "kile-2.1";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/kile/${name}.tar.bz2";
+    sha256 = "0ag6ya0625w34hpk0bpkjyi0ydw699zbkf86vwc19mh9cb0n0aic";
+  };
+
+  buildNativeInputs = [ cmake gettext ];
+  buildInputs = [ kdelibs ];
+
+  meta = {
+    description = "An integrated LaTeX editor for KDE";
+    homepage = http://kile.sourceforge.net;
+    maintainers = [ stdenv.lib.maintainers.urkud ];
+    license = stdenv.lib.licenses.gpl2Plus;
+    inherit (kdelibs.meta) platforms;
+  };
+}