2021-01-17 02:21:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gnome3, gtk3, gjs, flex, bison, libxml2, intltool,
|
2019-04-17 01:38:26 +01:00
|
|
|
gdl, libgda, gtksourceview, gsettings-desktop-schemas,
|
2017-12-18 23:04:20 +00:00
|
|
|
itstool, python3, ncurses, makeWrapper }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "anjuta";
|
2019-09-09 19:05:43 +01:00
|
|
|
version = "3.34.0";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 13:21:58 +00:00
|
|
|
url = "mirror://gnome/sources/anjuta/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-09 19:05:43 +01:00
|
|
|
sha256 = "13ql7axw6zz387s7pa1m7wmh7qps3x7fk53h9832vq1yxlq33aa2";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript { packageName = "anjuta"; attrPath = "gnome3.anjuta"; };
|
|
|
|
};
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-12-18 23:04:20 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 02:21:50 +00:00
|
|
|
pkg-config intltool itstool python3 makeWrapper
|
2017-12-18 23:04:20 +00:00
|
|
|
# Required by python3
|
|
|
|
ncurses
|
|
|
|
];
|
|
|
|
buildInputs = [
|
2019-11-04 23:38:42 +00:00
|
|
|
flex bison gtk3 libxml2 gjs gdl
|
2019-01-19 06:28:06 +00:00
|
|
|
libgda gtksourceview
|
2019-04-17 01:38:26 +01:00
|
|
|
gsettings-desktop-schemas
|
2016-10-20 16:42:24 +01:00
|
|
|
];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
wrapProgram $out/bin/anjuta \
|
|
|
|
--prefix XDG_DATA_DIRS : \
|
|
|
|
"$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-09-18 20:35:23 +01:00
|
|
|
description = "Software development studio";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://anjuta.org/";
|
2016-09-18 20:35:23 +01:00
|
|
|
license = licenses.gpl2;
|
2017-12-18 23:04:20 +00:00
|
|
|
maintainers = with maintainers; [];
|
2016-09-18 20:35:23 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|