gnome3.anjuta: clean up

This commit is contained in:
Jan Tojnar 2017-12-19 00:04:20 +01:00
parent 6002d1785d
commit e2f76df643
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
1 changed files with 10 additions and 4 deletions

View File

@ -1,14 +1,19 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, flex, bison, libxml2, intltool, { stdenv, fetchurl, pkgconfig, gnome3, gtk3, flex, bison, libxml2, intltool,
itstool, python2, makeWrapper }: itstool, python3, ncurses, makeWrapper }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src; inherit (import ./src.nix fetchurl) name src;
enableParallelBuilding = true; enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [
buildInputs = [ flex bison gtk3 libxml2 gnome3.gjs gnome3.gdl pkgconfig intltool itstool python3 makeWrapper
gnome3.libgda gnome3.gtksourceview intltool itstool python2 makeWrapper # Required by python3
ncurses
];
buildInputs = [
flex bison gtk3 libxml2 gnome3.gjs gnome3.gdl
gnome3.libgda gnome3.gtksourceview
gnome3.gsettings_desktop_schemas gnome3.gsettings_desktop_schemas
]; ];
@ -22,6 +27,7 @@ stdenv.mkDerivation rec {
description = "Software development studio"; description = "Software development studio";
homepage = http://anjuta.org/; homepage = http://anjuta.org/;
license = licenses.gpl2; license = licenses.gpl2;
maintainers = with maintainers; [];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }