nixpkgs/pkgs/applications/editors/geany/default.nix

57 lines
1.7 KiB
Nix
Raw Normal View History

2018-03-14 19:15:06 +00:00
{ stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file, libintl }:
2017-03-19 18:02:08 +00:00
with stdenv.lib;
let
2018-02-25 13:59:59 +00:00
version = "1.33";
in
stdenv.mkDerivation rec {
name = "geany-${version}";
src = fetchurl {
2013-04-11 17:28:21 +00:00
url = "http://download.geany.org/${name}.tar.bz2";
2018-02-25 13:59:59 +00:00
sha256 = "66baaff43f12caebcf0efec9a5533044dc52837f799c73a1fd7312caa86099c2";
};
2018-03-14 19:15:06 +00:00
nativeBuildInputs = [ pkgconfig intltool libintl ];
2017-03-19 18:15:40 +00:00
buildInputs = [ gtk2 which file ];
doCheck = true;
enableParallelBuilding = true;
patchPhase = "patchShebangs .";
# This file should normally require a gtk-update-icon-cache -q /usr/share/icons/hicolor command
# It have no reasons to exist in a redistribuable package
postInstall = "rm $out/share/icons/hicolor/icon-theme.cache";
meta = {
description = "Small and lightweight 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 = https://www.geany.org/;
license = "GPL";
maintainers = [];
2017-03-19 18:02:08 +00:00
platforms = platforms.all;
};
}