tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
blueprint-compiler: add darwin support
Weijia Wang
2 years ago
a6a01252
21002df8
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
blueprint
default.nix
+3
-2
pkgs/development/compilers/blueprint/default.nix
···
44
44
xvfb-run
45
45
];
46
46
47
47
-
doCheck = true;
47
47
+
# requires xvfb-run
48
48
+
doCheck = !stdenv.isDarwin;
48
49
49
50
checkPhase = ''
50
51
runHook preCheck
···
65
66
homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";
66
67
license = licenses.lgpl3Plus;
67
68
maintainers = with maintainers; [ benediktbroich paveloom ranfdev ];
68
68
-
platforms = platforms.linux;
69
69
+
platforms = platforms.unix;
69
70
};
70
71
})