1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 03:53:41 +00:00
nixpkgs/pkgs/development/libraries/graphene/default.nix

93 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-05-17 02:24:40 +01:00
, fetchFromGitHub
, nix-update-script
, pkg-config
2019-05-17 02:24:40 +01:00
, meson
, ninja
, python3
, mutest
, nixosTests
2019-05-17 02:24:40 +01:00
, glib
, gtk-doc
, docbook_xsl
, docbook_xml_dtd_43
, gobject-introspection
, makeWrapper
2019-05-17 02:24:40 +01:00
}:
stdenv.mkDerivation rec {
pname = "graphene";
version = "1.10.6";
2019-05-17 02:24:40 +01:00
outputs = [ "out" "devdoc" "installedTests" ];
src = fetchFromGitHub {
owner = "ebassi";
repo = pname;
rev = version;
sha256 = "v6YH3fRMTzhp7wmU8in9ukcavzHmOAW54EK9ZwQyFxc=";
2019-05-17 02:24:40 +01:00
};
patches = [
# Add option for changing installation path of installed tests.
2019-05-17 02:24:40 +01:00
./0001-meson-add-options-for-tests-installation-dirs.patch
];
nativeBuildInputs = [
docbook_xml_dtd_43
docbook_xsl
gtk-doc
meson
ninja
pkg-config
gobject-introspection
2019-05-17 02:24:40 +01:00
python3
makeWrapper
2019-05-17 02:24:40 +01:00
];
buildInputs = [
glib
2019-05-17 02:24:40 +01:00
gobject-introspection
];
checkInputs = [
mutest
2019-05-17 02:24:40 +01:00
];
mesonFlags = [
"-Dgtk_doc=true"
"-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 = ''
wrapProgram "${placeholder "installedTests"}/libexec/installed-tests/graphene-1.0/introspection.py" \
--prefix GI_TYPELIB_PATH : "$out/lib/girepository-1.0"
'';
passthru = {
tests = {
2019-11-07 13:11:08 +00:00
installedTests = nixosTests.installed-tests.graphene;
};
updateScript = nix-update-script {
attrPath = pname;
};
};
meta = with lib; {
2019-05-17 02:24:40 +01:00
description = "A thin layer of graphic data types";
homepage = "https://ebassi.github.com/graphene";
license = licenses.mit;
maintainers = teams.gnome.members ++ (with maintainers; [ ]);
2019-05-17 02:24:40 +01:00
platforms = platforms.unix;
};
}