tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
qvge: enable on darwin
Dmitry Kalinkin
4 years ago
74cb0717
c138eff3
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
qvge
default.nix
+3
-2
pkgs/applications/graphics/qvge/default.nix
···
3
3
, fetchFromGitHub
4
4
, substituteAll
5
5
, qmake
6
6
+
, qtsvg
6
7
, qtx11extras
7
8
, graphviz
8
9
}:
···
27
28
28
29
nativeBuildInputs = [ qmake ];
29
30
30
30
-
buildInputs = [ qtx11extras ];
31
31
+
buildInputs = if stdenv.isDarwin then [ qtsvg ] else [ qtx11extras ];
31
32
32
33
meta = with lib; {
33
34
description = "Qt Visual Graph Editor";
34
35
homepage = "https://github.com/ArsMasiuk/qvge";
35
36
license = licenses.mit;
36
37
maintainers = with maintainers; [ sikmir ];
37
37
-
platforms = with platforms; linux;
38
38
+
platforms = platforms.unix;
38
39
};
39
40
}