aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/gjs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/gjs/default.nix')
-rw-r--r--nixpkgs/pkgs/development/libraries/gjs/default.nix86
1 files changed, 86 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/gjs/default.nix b/nixpkgs/pkgs/development/libraries/gjs/default.nix
new file mode 100644
index 00000000000..7facdc1426f
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/gjs/default.nix
@@ -0,0 +1,86 @@
+{ fetchurl
+, stdenv
+, pkgconfig
+, gnome3
+, gtk3
+, atk
+, gobject-introspection
+, spidermonkey_60
+, pango
+, cairo
+, readline
+, glib
+, libxml2
+, dbus
+, gdk-pixbuf
+, makeWrapper
+, nixosTests
+}:
+
+stdenv.mkDerivation rec {
+ pname = "gjs";
+ version = "1.58.3";
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/gjs/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
+ sha256 = "1bkksx362007zs8c31ydygb29spwa5g5kch1ad2grc2sp53wv7ya";
+ };
+
+ outputs = [ "out" "dev" "installedTests" ];
+
+ nativeBuildInputs = [
+ pkgconfig
+ makeWrapper
+ libxml2 # for xml-stripblanks
+ ];
+
+ buildInputs = [
+ gobject-introspection
+ cairo
+ readline
+ spidermonkey_60
+ dbus # for dbus-run-session
+ ];
+
+ propagatedBuildInputs = [
+ glib
+ ];
+
+ configureFlags = [
+ "--enable-installed-tests"
+ ];
+
+ postPatch = ''
+ for f in installed-tests/*.test.in; do
+ substituteInPlace "$f" --subst-var-by pkglibexecdir "$installedTests/libexec/gjs"
+ done
+ '';
+
+ postInstall = ''
+ moveToOutput "share/installed-tests" "$installedTests"
+ moveToOutput "libexec/gjs/installed-tests" "$installedTests"
+
+ wrapProgram "$installedTests/libexec/gjs/installed-tests/minijasmine" \
+ --prefix GI_TYPELIB_PATH : "${stdenv.lib.makeSearchPath "lib/girepository-1.0" [ gtk3 atk pango.out gdk-pixbuf ]}:$installedTests/libexec/gjs/installed-tests"
+ '';
+
+ separateDebugInfo = stdenv.isLinux;
+
+ passthru = {
+ tests = {
+ installed-tests = nixosTests.installed-tests.gjs;
+ };
+
+ updateScript = gnome3.updateScript {
+ packageName = "gjs";
+ };
+ };
+
+ meta = with stdenv.lib; {
+ description = "JavaScript bindings for GNOME";
+ homepage = "https://gitlab.gnome.org/GNOME/gjs/blob/master/doc/Home.md";
+ license = licenses.lgpl2Plus;
+ maintainers = gnome3.maintainers;
+ platforms = platforms.linux;
+ };
+}