add darwin support

This commit is contained in:
happysalada 2021-10-05 16:36:57 +09:00
parent f0ca8382a5
commit 87ad5ae4a5

View File

@ -12,7 +12,7 @@
lib = nixpkgs.lib;
supportedSystems = [ "x86_64-linux" ];
supportedSystems = [ "x86_64-linux" "x86_64-darwin" ];
forAllSystems = f: lib.genAttrs supportedSystems (system: f system);