2019-03-07 15:48:05 +00:00
|
|
|
{ gcc8Stdenv
|
2018-09-13 08:27:08 +01:00
|
|
|
, ctags
|
2019-03-07 15:48:05 +00:00
|
|
|
, appstream-glib
|
2018-07-31 01:34:30 +01:00
|
|
|
, desktop-file-utils
|
|
|
|
, docbook_xsl
|
2018-07-31 07:05:11 +01:00
|
|
|
, docbook_xml_dtd_43
|
2018-07-31 01:34:30 +01:00
|
|
|
, fetchurl
|
|
|
|
, flatpak
|
|
|
|
, gnome3
|
2018-12-14 15:05:44 +00:00
|
|
|
, libgit2-glib
|
2018-12-02 11:41:15 +00:00
|
|
|
, gobject-introspection
|
2018-07-31 01:34:30 +01:00
|
|
|
, gspell
|
|
|
|
, gtk-doc
|
|
|
|
, gtk3
|
2018-09-13 04:18:50 +01:00
|
|
|
, gtksourceview4
|
2018-07-31 01:34:30 +01:00
|
|
|
, hicolor-icon-theme
|
|
|
|
, json-glib
|
|
|
|
, jsonrpc-glib
|
|
|
|
, libdazzle
|
2019-03-23 04:50:12 +00:00
|
|
|
, libpeas
|
2018-07-31 01:34:30 +01:00
|
|
|
, libxml2
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, ostree
|
|
|
|
, pcre
|
|
|
|
, pkgconfig
|
|
|
|
, python3
|
|
|
|
, sysprof
|
|
|
|
, template-glib
|
|
|
|
, vala
|
2018-12-25 23:15:46 +00:00
|
|
|
, vte
|
2018-07-31 01:34:30 +01:00
|
|
|
, webkitgtk
|
|
|
|
, wrapGAppsHook
|
2019-03-07 15:48:05 +00:00
|
|
|
, dbus
|
|
|
|
, xvfb_run
|
2018-07-29 04:48:43 +01:00
|
|
|
}:
|
2019-03-07 15:48:05 +00:00
|
|
|
|
2018-07-29 04:48:43 +01:00
|
|
|
let
|
2019-03-07 15:48:05 +00:00
|
|
|
# Does not build with GCC 7
|
|
|
|
# https://gitlab.gnome.org/GNOME/gnome-builder/issues/868
|
|
|
|
stdenv = gcc8Stdenv;
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-29 04:48:43 +01:00
|
|
|
pname = "gnome-builder";
|
2019-08-04 11:35:32 +01:00
|
|
|
version = "3.32.4";
|
2018-07-29 04:48:43 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-05 01:12:11 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-08-04 11:35:32 +01:00
|
|
|
sha256 = "0xip58m206p8wa28p0a3y4ykylzr5xzmirjl3dspg4j25r08i8qr";
|
2018-07-29 04:48:43 +01:00
|
|
|
};
|
|
|
|
|
2018-07-30 23:04:31 +01:00
|
|
|
nativeBuildInputs = [
|
2019-03-07 15:48:05 +00:00
|
|
|
appstream-glib
|
2018-07-31 01:34:30 +01:00
|
|
|
desktop-file-utils
|
|
|
|
docbook_xsl
|
2018-07-31 07:05:11 +01:00
|
|
|
docbook_xml_dtd_43
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2018-07-31 01:34:30 +01:00
|
|
|
gtk-doc
|
|
|
|
hicolor-icon-theme
|
2019-03-07 15:48:05 +00:00
|
|
|
(meson.override ({ inherit stdenv; }))
|
2018-07-29 04:48:43 +01:00
|
|
|
ninja
|
|
|
|
pkgconfig
|
2018-09-03 22:55:43 +01:00
|
|
|
python3
|
2018-07-31 01:34:30 +01:00
|
|
|
python3.pkgs.wrapPython
|
|
|
|
wrapGAppsHook
|
2018-07-30 23:04:31 +01:00
|
|
|
];
|
2018-07-29 04:48:43 +01:00
|
|
|
|
2018-07-30 23:04:31 +01:00
|
|
|
buildInputs = [
|
2018-09-13 08:27:08 +01:00
|
|
|
ctags
|
2018-07-30 23:04:31 +01:00
|
|
|
flatpak
|
2018-07-29 04:48:43 +01:00
|
|
|
gnome3.devhelp
|
2019-03-07 15:48:05 +00:00
|
|
|
gnome3.glade
|
2018-12-14 15:05:44 +00:00
|
|
|
libgit2-glib
|
2019-03-23 04:50:12 +00:00
|
|
|
libpeas
|
2018-12-25 23:15:46 +00:00
|
|
|
vte
|
2018-07-29 04:48:43 +01:00
|
|
|
gspell
|
|
|
|
gtk3
|
2018-09-13 04:18:50 +01:00
|
|
|
gtksourceview4
|
2018-07-29 04:48:43 +01:00
|
|
|
json-glib
|
|
|
|
jsonrpc-glib
|
|
|
|
libdazzle
|
|
|
|
libxml2
|
2018-07-30 23:04:31 +01:00
|
|
|
ostree
|
2018-07-29 04:48:43 +01:00
|
|
|
pcre
|
2018-07-30 23:04:31 +01:00
|
|
|
python3
|
2018-07-29 04:48:43 +01:00
|
|
|
sysprof
|
|
|
|
template-glib
|
|
|
|
vala
|
|
|
|
webkitgtk
|
|
|
|
];
|
|
|
|
|
2019-03-07 15:48:05 +00:00
|
|
|
checkInputs = [
|
|
|
|
dbus
|
|
|
|
xvfb_run
|
|
|
|
];
|
|
|
|
|
2018-08-01 01:04:03 +01:00
|
|
|
outputs = [ "out" "devdoc" ];
|
2018-07-31 05:43:12 +01:00
|
|
|
|
2018-07-29 04:48:43 +01:00
|
|
|
prePatch = ''
|
2018-07-30 23:04:31 +01:00
|
|
|
patchShebangs build-aux/meson/post_install.py
|
2018-07-29 04:48:43 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
mesonFlags = [
|
|
|
|
"-Dpython_libprefix=${python3.libPrefix}"
|
2019-03-07 15:48:05 +00:00
|
|
|
"-Ddocs=true"
|
2018-08-01 05:51:11 +01:00
|
|
|
|
|
|
|
# Making the build system correctly detect clang header and library paths
|
|
|
|
# is difficult. Somebody should look into fixing this.
|
2019-03-07 15:48:05 +00:00
|
|
|
"-Dplugin_clang=false"
|
|
|
|
|
|
|
|
# Do not try to check if appstream images exist
|
|
|
|
"-Dnetwork_tests=false"
|
2018-07-29 04:48:43 +01:00
|
|
|
];
|
|
|
|
|
2018-08-01 05:51:11 +01:00
|
|
|
# Some tests fail due to being unable to find the Vte typelib, and I don't
|
|
|
|
# understand why. Somebody should look into fixing this.
|
2019-03-07 15:48:05 +00:00
|
|
|
doCheck = true;
|
2018-08-01 05:51:11 +01:00
|
|
|
|
2019-03-07 15:48:05 +00:00
|
|
|
checkPhase = ''
|
|
|
|
export NO_AT_BRIDGE=1
|
|
|
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
|
|
|
--config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
|
|
|
meson test --print-errorlogs
|
2018-07-31 07:05:11 +01:00
|
|
|
'';
|
|
|
|
|
2018-07-31 01:34:30 +01:00
|
|
|
pythonPath = with python3.pkgs; requiredPythonModules [ pygobject3 ];
|
2018-07-29 04:48:43 +01:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
buildPythonPath "$out $pythonPath"
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
--prefix PYTHONPATH : "$program_PYTHONPATH"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Ensure that all plugins get their interpreter paths fixed up.
|
|
|
|
find $out/lib -name \*.py -type f -print0 | while read -d "" f; do
|
|
|
|
chmod a+x "$f"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.updateScript = gnome3.updateScript { packageName = pname; };
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An IDE for writing GNOME-based software";
|
2018-08-01 06:46:47 +01:00
|
|
|
longDescription = ''
|
|
|
|
Global search, auto-completion, source code map, documentation
|
|
|
|
reference, and other features expected in an IDE, but with a focus
|
|
|
|
on streamlining GNOME-based development projects.
|
|
|
|
|
|
|
|
This package does not pull in the dependencies needed for every
|
|
|
|
plugin. If you find that a plugin you wish to use doesn't work, we
|
|
|
|
currently recommend running gnome-builder inside a nix-shell with
|
|
|
|
appropriate dependencies loaded.
|
|
|
|
'';
|
2018-07-29 04:48:43 +01:00
|
|
|
homepage = https://wiki.gnome.org/Apps/Builder;
|
2018-07-30 23:04:31 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = gnome3.maintainers;
|
2018-07-29 04:48:43 +01:00
|
|
|
platforms = platforms.linux;
|
2018-08-01 21:12:54 +01:00
|
|
|
};
|
2018-07-29 04:48:43 +01:00
|
|
|
}
|