1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00

goobook: fix build on darwin

This commit is contained in:
Jason "Don" O'Conal 2014-05-05 11:43:23 +10:00
parent 97262a59b5
commit 05095ec48d
2 changed files with 4 additions and 5 deletions
pkgs
development/python-modules/pycrypto
top-level

View file

@ -11,9 +11,11 @@ buildPythonPackage rec {
buildInputs = [ gmp ]; buildInputs = [ gmp ];
doCheck = !stdenv.isDarwin; # error: AF_UNIX path too long
meta = { meta = {
homepage = "http://www.pycrypto.org/"; homepage = "http://www.pycrypto.org/";
description = "Python Cryptography Toolkit"; description = "Python Cryptography Toolkit";
platforms = stdenv.lib.platforms.gnu; platforms = stdenv.lib.platforms.unix;
}; };
} }

View file

@ -5129,12 +5129,9 @@ rec {
meta = { meta = {
description = "ASN.1 tools for Python"; description = "ASN.1 tools for Python";
homepage = http://pyasn1.sourceforge.net/; homepage = http://pyasn1.sourceforge.net/;
license = "mBSD"; license = "mBSD";
platforms = stdenv.lib.platforms.unix; # arbitrary choice
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
}; };
}); });