nixpkgs/pkgs/development/libraries/gjs/default.nix

140 lines
3.5 KiB
Nix
Raw Permalink Normal View History

2019-11-04 23:49:38 +00:00
{ fetchurl
2021-05-06 17:32:27 +00:00
, lib
, stdenv
, meson
, ninja
, pkg-config
, gnome
2019-11-04 23:49:38 +00:00
, gtk3
, atk
, gobject-introspection
, spidermonkey_78
2019-11-04 23:49:38 +00:00
, pango
, cairo
2019-11-04 23:49:38 +00:00
, readline
, glib
, libxml2
, dbus
, gdk-pixbuf
, harfbuzz
2019-11-04 23:49:38 +00:00
, makeWrapper
, which
2021-05-08 13:45:03 +00:00
, xvfb-run
, nixosTests
2019-11-04 23:49:38 +00:00
}:
let
testDeps = [
gobject-introspection # for Gio and cairo typelibs
gtk3 atk pango.out gdk-pixbuf harfbuzz
];
in stdenv.mkDerivation rec {
pname = "gjs";
2021-05-06 17:32:27 +00:00
version = "1.68.1";
outputs = [ "out" "dev" "installedTests" ];
src = fetchurl {
url = "mirror://gnome/sources/gjs/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-05-06 17:32:27 +00:00
sha256 = "0w2cbfpmc6alz7z8ycchhlkn586av5y8zk2xmgwzq10i0k13xyig";
};
patches = [
# Hard-code various paths
./fix-paths.patch
# Allow installing installed tests to a separate output.
./installed-tests-path.patch
];
2019-11-04 23:49:38 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
2019-11-04 23:49:38 +00:00
makeWrapper
which # for locale detection
libxml2 # for xml-stripblanks
2019-11-04 23:49:38 +00:00
];
buildInputs = [
gobject-introspection
cairo
2019-11-04 23:49:38 +00:00
readline
spidermonkey_78
dbus # for dbus-run-session
2019-11-04 23:49:38 +00:00
];
checkInputs = [
2021-05-08 13:45:03 +00:00
xvfb-run
] ++ testDeps;
2019-11-04 23:49:38 +00:00
propagatedBuildInputs = [
glib
2019-11-04 23:49:38 +00:00
];
mesonFlags = [
"-Dprofiler=disabled"
"-Dinstalled_test_prefix=${placeholder "installedTests"}"
];
doCheck = true;
2018-02-14 21:19:56 +00:00
postPatch = ''
patchShebangs build/choose-tests-locale.sh
substituteInPlace installed-tests/debugger-test.sh --subst-var-by gjsConsole $out/bin/gjs-console
2018-02-14 21:19:56 +00:00
'';
preCheck = ''
# Our gobject-introspection patches make the shared library paths absolute
# in the GIR files. When running tests, the library is not yet installed,
# though, so we need to replace the absolute path with a local one during build.
# We are using a symlink that will be overridden during installation.
mkdir -p $out/lib $installedTests/libexec/installed-tests/gjs
ln -s $PWD/libgjs.so.0 $out/lib/libgjs.so.0
ln -s $PWD/installed-tests/js/libgimarshallingtests.so $installedTests/libexec/installed-tests/gjs/libgimarshallingtests.so
2021-05-06 17:32:27 +00:00
ln -s $PWD/installed-tests/js/libgjstesttools/libgjstesttools.so $installedTests/libexec/installed-tests/gjs/libgjstesttools.so
ln -s $PWD/installed-tests/js/libregress.so $installedTests/libexec/installed-tests/gjs/libregress.so
ln -s $PWD/installed-tests/js/libwarnlib.so $installedTests/libexec/installed-tests/gjs/libwarnlib.so
'';
2018-02-14 21:19:56 +00:00
postInstall = ''
# TODO: make the glib setup hook handle moving the schemas in other outputs.
installedTestsSchemaDatadir="$installedTests/share/gsettings-schemas/${pname}-${version}"
mkdir -p "$installedTestsSchemaDatadir"
mv "$installedTests/share/glib-2.0" "$installedTestsSchemaDatadir"
'';
postFixup = ''
wrapProgram "$installedTests/libexec/installed-tests/gjs/minijasmine" \
--prefix XDG_DATA_DIRS : "$installedTestsSchemaDatadir" \
--prefix GI_TYPELIB_PATH : "${lib.makeSearchPath "lib/girepository-1.0" testDeps}"
'';
checkPhase = ''
runHook preCheck
xvfb-run -s '-screen 0 800x600x24' \
meson test --print-errorlogs
runHook postCheck
'';
2019-11-04 23:51:07 +00:00
separateDebugInfo = stdenv.isLinux;
2019-11-04 23:49:38 +00:00
passthru = {
tests = {
installed-tests = nixosTests.installed-tests.gjs;
};
updateScript = gnome.updateScript {
2019-11-04 23:49:38 +00:00
packageName = "gjs";
};
};
meta = with lib; {
2018-02-14 20:28:44 +00:00
description = "JavaScript bindings for GNOME";
2019-11-04 23:49:38 +00:00
homepage = "https://gitlab.gnome.org/GNOME/gjs/blob/master/doc/Home.md";
license = licenses.lgpl2Plus;
maintainers = teams.gnome.members;
platforms = platforms.linux;
};
}