python-pycollada: set meta.platforms to only linux, darwin
It doesn't build on the BSDs (or actually, it's dependencies).
This commit is contained in:
parent
d4f47af75a
commit
8d52c9066e
|
@ -1132,7 +1132,7 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
||||||
description = "Python library for reading and writing collada documents";
|
description = "Python library for reading and writing collada documents";
|
||||||
homepage = http://pycollada.github.io/;
|
homepage = http://pycollada.github.io/;
|
||||||
license = "BSD"; # they don't specify which BSD variant
|
license = "BSD"; # they don't specify which BSD variant
|
||||||
platforms = platforms.unix;
|
platforms = with platforms; linux ++ darwin;
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue