summary refs log tree commit diff
path: root/pkgs/applications/editors/vanubi
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2014-09-13 12:29:14 +0200
committerLuca Bruno <lucabru@src.gnome.org>2014-09-13 12:39:18 +0200
commitf5c43d9f621fa71120be3d01ae55bd8cebe3717d (patch)
tree3bd7bb7de71f50154f6b3bd3410cae1522533c82 /pkgs/applications/editors/vanubi
parentd45fc250358ae35e6b2e0dbc6528b28b2c5f90c1 (diff)
downloadnixlib-f5c43d9f621fa71120be3d01ae55bd8cebe3717d.tar
nixlib-f5c43d9f621fa71120be3d01ae55bd8cebe3717d.tar.gz
nixlib-f5c43d9f621fa71120be3d01ae55bd8cebe3717d.tar.bz2
nixlib-f5c43d9f621fa71120be3d01ae55bd8cebe3717d.tar.lz
nixlib-f5c43d9f621fa71120be3d01ae55bd8cebe3717d.tar.xz
nixlib-f5c43d9f621fa71120be3d01ae55bd8cebe3717d.tar.zst
nixlib-f5c43d9f621fa71120be3d01ae55bd8cebe3717d.zip
vanubi: new package
Programming editor for GTK+ inspired by Emacs

http://vanubi.github.io/vanubi
Diffstat (limited to 'pkgs/applications/editors/vanubi')
-rw-r--r--pkgs/applications/editors/vanubi/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/editors/vanubi/default.nix b/pkgs/applications/editors/vanubi/default.nix
new file mode 100644
index 000000000000..692a728b12e4
--- /dev/null
+++ b/pkgs/applications/editors/vanubi/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, pkgconfig, vala, which, autoconf, automake
+, libtool, glib, gtk3, gnome3, libwnck3, asciidoc, python3Packages }:
+
+stdenv.mkDerivation rec {
+  name = "vanubi-${version}";
+  version = "0.0.14";
+
+  src = fetchurl {
+    url = "https://github.com/vanubi/vanubi/archive/v${version}.tar.gz";
+    sha256 = "0cd45zm54j6xz1a31qllg2w7l77sncv7mrpfx9bjzdiqpmzsdypl";
+  };
+
+  buildInputs = [ pkgconfig vala which autoconf automake
+                  libtool glib gtk3 libwnck3 asciidoc
+                  gnome3.gtksourceview gnome3.vte python3Packages.pygments ];
+
+  configureScript = "./autogen.sh";
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    homepage = http://vanubi.github.io/vanubi;
+    description = "Programming editor for GTK+ inspired by Emacs";
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.lethalman ];
+  };
+}