summary refs log tree commit diff
path: root/pkgs/applications/editors/geany
diff options
context:
space:
mode:
authorBaptist BENOIST <return_0@live.com>2012-10-16 17:30:08 +0200
committerBaptist BENOIST <return_0@live.com>2012-10-16 18:03:12 +0200
commit51fe78841797c3d59ed7289df28ed19715c9acb7 (patch)
tree8497a6233879d7ac65efbed0c58d61edfb1d795d /pkgs/applications/editors/geany
parente45d4e27227c63bb71244c5399f9cd3274c45291 (diff)
downloadnixlib-51fe78841797c3d59ed7289df28ed19715c9acb7.tar
nixlib-51fe78841797c3d59ed7289df28ed19715c9acb7.tar.gz
nixlib-51fe78841797c3d59ed7289df28ed19715c9acb7.tar.bz2
nixlib-51fe78841797c3d59ed7289df28ed19715c9acb7.tar.lz
nixlib-51fe78841797c3d59ed7289df28ed19715c9acb7.tar.xz
nixlib-51fe78841797c3d59ed7289df28ed19715c9acb7.tar.zst
nixlib-51fe78841797c3d59ed7289df28ed19715c9acb7.zip
Add geany-1.22
Geany is a small and lightweight Integrated Development Environment.
It was developed to provide a small and fast IDE, which has only a few dependencies from other packages.
Another goal was to be as independent as possible from a special Desktop Environment like KDE or GNOME.
Geany only requires the GTK2 runtime libraries.

Some basic features of Geany:
 - Syntax highlighting
 - Code folding
 - Symbol name auto-completion
 - Construct completion/snippets
 - Auto-closing of XML and HTML tags
 - Call tips
 - Many supported filetypes including C, Java, PHP, HTML, Python, Perl, Pascal (full list)
 - Symbol lists
 - Code navigation
 - Build system to compile and execute your code
 - Simple project management
 - Plugin interface

Signed-off-by: Baptist BENOIST <return_0@live.com>
Diffstat (limited to 'pkgs/applications/editors/geany')
-rw-r--r--pkgs/applications/editors/geany/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix
new file mode 100644
index 000000000000..1c08dc6db8d7
--- /dev/null
+++ b/pkgs/applications/editors/geany/default.nix
@@ -0,0 +1,47 @@
+{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool }:
+
+let
+  version = "1.22";
+in
+
+stdenv.mkDerivation rec {
+  name = "geany-${version}";
+
+  src = fetchurl {
+    url = "http://download.geany.org/${name}.tar.gz";
+    md5 = "1cb7f6cea8e301c416211786cec474fa";
+  };
+
+  buildInputs = [ gtk2 which pkgconfig intltool ];
+
+  doCheck = true;
+
+  enableParallelBuilding = true;
+
+  meta = {
+    description = "A GTK2 small and ligthweight IDE.";
+    longDescription = ''
+      Geany is a small and lightweight Integrated Development Environment.
+      It was developed to provide a small and fast IDE, which has only a few dependencies from other packages.
+      Another goal was to be as independent as possible from a special Desktop Environment like KDE or GNOME.
+      Geany only requires the GTK2 runtime libraries.
+      Some basic features of Geany:
+      - Syntax highlighting
+      - Code folding
+      - Symbol name auto-completion
+      - Construct completion/snippets
+      - Auto-closing of XML and HTML tags
+      - Call tips
+      - Many supported filetypes including C, Java, PHP, HTML, Python, Perl, Pascal (full list)
+      - Symbol lists
+      - Code navigation
+      - Build system to compile and execute your code
+      - Simple project management
+      - Plugin interface
+    '';
+    homepage = "http://www.geany.org/";
+    license = "GPL";
+    maintainers = [ stdenv.lib.maintainers.bbenoist ];
+    platforms = stdenv.lib.platforms.all;
+  };
+}