about summary refs log tree commit diff
path: root/pkgs/development/python-modules/asn1ate
diff options
context:
space:
mode:
authorFreezeboy <freezeboy@users.noreply.github.com>2019-02-17 14:00:33 +0100
committerfreezeboy <freezeboy@users.github.com>2019-02-18 10:56:58 +0100
commit8f87a61de202067f618f028b82256055c46337bc (patch)
tree4e0a54b5091901205ccf1de68ff3d711af7be8bf /pkgs/development/python-modules/asn1ate
parentb75eab88bde1b13cbe83d25b477d83eaf811e0cf (diff)
Replace platforms.linux with platforms.darwin for expressions that compile on darwin too (too restrictive platforms)
Diffstat (limited to 'pkgs/development/python-modules/asn1ate')
-rw-r--r--pkgs/development/python-modules/asn1ate/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/asn1ate/default.nix b/pkgs/development/python-modules/asn1ate/default.nix
index 29dae1fd663aa..6af5b3da88089 100644
--- a/pkgs/development/python-modules/asn1ate/default.nix
+++ b/pkgs/development/python-modules/asn1ate/default.nix
@@ -16,7 +16,7 @@ buildPythonPackage rec {
   meta = with stdenv.lib; {
     description = "Python library for translating ASN.1 into other forms";
     license = licenses.bsd3;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
     maintainers = with maintainers; [ leenaars ];
   };
 }