mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
zziplib: broaden platforms
Builds fine for FreeBSD and NetBSD.
The use of Python's platforms comes from f2b30a1bf7
("Zziplib: Build
only where Python is supported."), from way before Nixpkgs supported
cross compilation. (Python is a native build input.) Now that we do
support cross compilation, we shouldn't couple the platforms of a
package to one of its native build inputs like this.
This commit is contained in:
parent
4e9efbd52a
commit
e6c17d8808
@ -76,6 +76,6 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
license = with licenses; [ lgpl2Plus mpl11 ];
|
license = with licenses; [ lgpl2Plus mpl11 ];
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
platforms = python3.meta.platforms;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user