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
xvfb-run
45
];
46
47
-
doCheck = true;
0
48
49
checkPhase = ''
50
runHook preCheck
···
65
homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";
66
license = licenses.lgpl3Plus;
67
maintainers = with maintainers; [ benediktbroich paveloom ranfdev ];
68
-
platforms = platforms.linux;
69
};
70
})
···
44
xvfb-run
45
];
46
47
+
# requires xvfb-run
48
+
doCheck = !stdenv.isDarwin;
49
50
checkPhase = ''
51
runHook preCheck
···
66
homepage = "https://gitlab.gnome.org/jwestman/blueprint-compiler";
67
license = licenses.lgpl3Plus;
68
maintainers = with maintainers; [ benediktbroich paveloom ranfdev ];
69
+
platforms = platforms.unix;
70
};
71
})