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

75 lines
1.3 KiB
Nix
Raw Normal View History

2019-05-17 01:24:40 +00:00
{ stdenv
, fetchFromGitHub
, pkgconfig
, meson
, ninja
, python3
, mutest
, nixosTests
2019-05-17 01:24:40 +00:00
, glib
, gtk-doc
, docbook_xsl
, docbook_xml_dtd_43
, gobject-introspection
}:
stdenv.mkDerivation rec {
pname = "graphene";
2019-09-09 11:26:09 +00:00
version = "1.10.0";
2019-05-17 01:24:40 +00:00
outputs = [ "out" "devdoc" "installedTests" ];
src = fetchFromGitHub {
owner = "ebassi";
repo = pname;
rev = version;
2019-09-09 11:26:09 +00:00
sha256 = "16vqwih5bfxv7r3mm7iiha804rpsxzxjfrs4kx76d9q5yg2hayxr";
2019-05-17 01:24:40 +00:00
};
patches = [
./0001-meson-add-options-for-tests-installation-dirs.patch
];
mesonFlags = [
"-Dgtk_doc=true"
"-Dinstalled_test_datadir=${placeholder "installedTests"}/share"
"-Dinstalled_test_bindir=${placeholder "installedTests"}/libexec"
2019-05-17 01:24:40 +00:00
];
nativeBuildInputs = [
docbook_xml_dtd_43
docbook_xsl
gtk-doc
meson
ninja
pkgconfig
gobject-introspection
2019-05-17 01:24:40 +00:00
python3
];
buildInputs = [
glib
2019-05-17 01:24:40 +00:00
gobject-introspection
];
checkInputs = [
mutest
2019-05-17 01:24:40 +00:00
];
doCheck = true;
passthru = {
tests = {
installedTests = nixosTests.graphene;
};
};
2019-05-17 01:24:40 +00:00
meta = with stdenv.lib; {
description = "A thin layer of graphic data types";
homepage = "https://ebassi.github.com/graphene";
license = licenses.mit;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.unix;
};
}