mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
114 lines
2.5 KiB
Nix
114 lines
2.5 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, nix-update-script
|
|
, pkg-config
|
|
, meson
|
|
, mesonEmulatorHook
|
|
, ninja
|
|
, python3
|
|
, mutest
|
|
, nixosTests
|
|
, glib
|
|
, gtk-doc
|
|
, docbook_xsl
|
|
, docbook_xml_dtd_43
|
|
, gobject-introspection
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "graphene";
|
|
version = "1.10.8";
|
|
|
|
outputs = [ "out" "dev" "devdoc" ]
|
|
++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [ "installedTests" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ebassi";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "P6JQhSktzvyMHatP/iojNGXPmcsxsFxdYerXzS23ojI=";
|
|
};
|
|
|
|
patches = [
|
|
# Add option for changing installation path of installed tests.
|
|
./0001-meson-add-options-for-tests-installation-dirs.patch
|
|
|
|
# Disable flaky simd_operators_reciprocal test
|
|
# https://github.com/ebassi/graphene/issues/246
|
|
(fetchpatch {
|
|
url = "https://github.com/ebassi/graphene/commit/4fbdd07ea3bcd0964cca3966010bf71cb6fa8209.patch";
|
|
sha256 = "uFkkH0u4HuQ/ua1mfO7sJZ7MPrQdV/JON7mTYB4DW80=";
|
|
includes = [ "tests/simd.c" ];
|
|
revert = true;
|
|
})
|
|
];
|
|
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
docbook_xml_dtd_43
|
|
docbook_xsl
|
|
gtk-doc
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gobject-introspection
|
|
python3
|
|
makeWrapper
|
|
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
|
mesonEmulatorHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mutest
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Dgtk_doc=true"
|
|
"-Dintrospection=enabled"
|
|
"-Dinstalled_test_datadir=${placeholder "installedTests"}/share"
|
|
"-Dinstalled_test_bindir=${placeholder "installedTests"}/libexec"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postPatch = ''
|
|
patchShebangs tests/gen-installed-test.py
|
|
PATH=${python3.withPackages (pp: [ pp.pygobject3 pp.tappy ])}/bin:$PATH patchShebangs tests/introspection.py
|
|
'';
|
|
|
|
postFixup = let
|
|
introspectionPy = "${placeholder "installedTests"}/libexec/installed-tests/graphene-1.0/introspection.py";
|
|
in ''
|
|
if [ -x '${introspectionPy}' ] ; then
|
|
wrapProgram '${introspectionPy}' \
|
|
--prefix GI_TYPELIB_PATH : "$out/lib/girepository-1.0"
|
|
fi
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
installedTests = nixosTests.installed-tests.graphene;
|
|
};
|
|
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A thin layer of graphic data types";
|
|
homepage = "https://github.com/ebassi/graphene";
|
|
license = licenses.mit;
|
|
maintainers = teams.gnome.members ++ (with maintainers; [ ]);
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|