gjs: clean up (#73841)

gjs: clean up
This commit is contained in:
Jan Tojnar 2019-11-21 02:05:16 +01:00 committed by GitHub
commit b94b8ca387
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,12 +7,14 @@
, gobject-introspection , gobject-introspection
, spidermonkey_60 , spidermonkey_60
, pango , pango
, cairo
, readline , readline
, glib , glib
, libxml2 , libxml2
, dbus , dbus
, gdk-pixbuf , gdk-pixbuf
, makeWrapper , makeWrapper
, nixosTests
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -24,24 +26,24 @@ stdenv.mkDerivation rec {
sha256 = "1xf68rbagkflb9yi3visfw8cbxqlzd717y8jakgw0y6whzm1dpxl"; sha256 = "1xf68rbagkflb9yi3visfw8cbxqlzd717y8jakgw0y6whzm1dpxl";
}; };
outputs = [ "out" "installedTests" ]; outputs = [ "out" "dev" "installedTests" ];
nativeBuildInputs = [ nativeBuildInputs = [
pkgconfig pkgconfig
makeWrapper makeWrapper
libxml2 # for xml-stripblanks
]; ];
buildInputs = [ buildInputs = [
libxml2
gobject-introspection gobject-introspection
glib cairo
pango
readline readline
dbus spidermonkey_60
dbus # for dbus-run-session
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
spidermonkey_60 glib
]; ];
configureFlags = [ configureFlags = [
@ -55,8 +57,6 @@ stdenv.mkDerivation rec {
''; '';
postInstall = '' postInstall = ''
sed 's|-lreadline|-L${readline.out}/lib -lreadline|g' -i $out/lib/libgjs.la
moveToOutput "share/installed-tests" "$installedTests" moveToOutput "share/installed-tests" "$installedTests"
moveToOutput "libexec/gjs/installed-tests" "$installedTests" moveToOutput "libexec/gjs/installed-tests" "$installedTests"
@ -67,6 +67,10 @@ stdenv.mkDerivation rec {
separateDebugInfo = stdenv.isLinux; separateDebugInfo = stdenv.isLinux;
passthru = { passthru = {
tests = {
installed-tests = nixosTests.installed-tests.gjs;
};
updateScript = gnome3.updateScript { updateScript = gnome3.updateScript {
packageName = "gjs"; packageName = "gjs";
}; };