summary refs log tree commit diff
path: root/pkgs/applications/editors/vanubi/default.nix
blob: 692a728b12e4b21ecf9ff151e90c8721c46bd7fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 ];
  };
}