Merge pull request #162 from srid/m1

Allow macOS M1
This commit is contained in:
Jonas Chevalier 2022-05-08 23:43:46 +02:00 committed by GitHub
commit 0236d1fdc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 8 deletions

View File

@ -15,7 +15,6 @@ if sys.version_info[0] == 3:
code = code.replace("\r\n", "\n") + "\n"
exec(code, global_dict)
else:
def to_str(value):

View File

@ -2,11 +2,11 @@
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1610051610,
"narHash": "sha256-U9rPz/usA1/Aohhk7Cmc2gBrEEKRzcW4nwPWMPwja4Y=",
"lastModified": 1649676176,
"narHash": "sha256-OWKJratjt2RW151VUlJPRALb7OU2S5s+f0vLj4o1bHM=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "3982c9903e93927c2164caa727cd3f6a0e6d14cc",
"rev": "a4b154ebbdc88c8498a5c7b01589addc9e9cb678",
"type": "github"
},
"original": {
@ -17,11 +17,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1636470166,
"narHash": "sha256-0tyWSS5rgMtML5p41ZdE5ocuAnRdtOGvdsqQyMUBYAI=",
"lastModified": 1651545648,
"narHash": "sha256-7f1JYFHtfTOvois5LdXrKXthjb6rE9i8ZxWDQyzYKAk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "f096b7122ab08e93c8b052c92461ca71b80c0cc8",
"rev": "24c33ab7952544ad355d0677c9eea931b23f371c",
"type": "github"
},
"original": {

View File

@ -6,7 +6,7 @@
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }@inputs:
flake-utils.lib.eachSystem [ "x86_64-linux" "x86_64-darwin" ] (system:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import self {
inherit system;