mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #67500 from jtojnar/graphene-fix-tests
graphene: fix installed tests
This commit is contained in:
commit
667ee34440
2 changed files with 10 additions and 3 deletions
|
@ -5,6 +5,7 @@
|
||||||
, ninja
|
, ninja
|
||||||
, python3
|
, python3
|
||||||
, mutest
|
, mutest
|
||||||
|
, nixosTests
|
||||||
, glib
|
, glib
|
||||||
, gtk-doc
|
, gtk-doc
|
||||||
, docbook_xsl
|
, docbook_xsl
|
||||||
|
@ -57,6 +58,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
tests = {
|
||||||
|
installedTests = nixosTests.graphene;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A thin layer of graphic data types";
|
description = "A thin layer of graphic data types";
|
||||||
homepage = "https://ebassi.github.com/graphene";
|
homepage = "https://ebassi.github.com/graphene";
|
||||||
|
|
|
@ -6,15 +6,15 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mutest";
|
pname = "mutest";
|
||||||
version = "unstable-2019-10-12";
|
version = "unstable-2019-08-26";
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ebassi";
|
owner = "ebassi";
|
||||||
repo = "mutest";
|
repo = "mutest";
|
||||||
rev = "822b5ddf07f957135ba39889d81e513d525b9b8e";
|
rev = "e6246c9ae4f36ffe8c021f0a80438f6c7a6efa3a";
|
||||||
sha256 = "0a5fjdq9p0q5bibqngbbpd9lga0gzrv8yj5wgdfb8ylxzg0jph2p";
|
sha256 = "0gdqwq6fvk06wld4rhnw5752hahrvhd69zrci045x25rwx90x26q";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
Loading…
Reference in a new issue