tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
osl: add darwin support
Weijia Wang
2 years ago
6d1b8e5a
dd05cbb4
+4
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
osl
default.nix
+4
-1
pkgs/development/compilers/osl/default.nix
reviewed
···
4
4
, cmake
5
5
, clang
6
6
, libclang
7
7
+
, libxml2
7
8
, zlib
8
9
, openexr
9
10
, openimageio
···
67
68
python3.pkgs.pybind11
68
69
util-linux # needed just for hexdump
69
70
zlib
71
71
+
] ++ lib.optionals stdenv.isDarwin [
72
72
+
libxml2
70
73
];
71
74
72
75
postFixup = ''
···
79
82
homepage = "https://opensource.imageworks.com/osl.html";
80
83
maintainers = with maintainers; [ hodapp ];
81
84
license = licenses.bsd3;
82
82
-
platforms = platforms.linux;
85
85
+
platforms = platforms.unix;
83
86
};
84
87
}