Skip to content

Commit

Permalink
Merge pull request #150 from BSathvik/nix-darwin
Browse files Browse the repository at this point in the history
nix: add darwin support and default package
  • Loading branch information
CertainLach authored Mar 12, 2024
2 parents 000d927 + 3b61211 commit b9d2fad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
rust-overlay,
...
}:
flake-utils.lib.eachSystem (with flake-utils.lib.system; [x86_64-linux x86_64-windows]) (
flake-utils.lib.eachSystem (with flake-utils.lib.system; [x86_64-linux x86_64-windows x86_64-darwin]) (
system: let
pkgs = import nixpkgs {
inherit system;
Expand All @@ -34,6 +34,7 @@
};
in {
packages = rec {
default = jrsonnet;
go-jsonnet = pkgs.callPackage ./nix/go-jsonnet.nix {};
sjsonnet = pkgs.callPackage ./nix/sjsonnet.nix {};
jsonnet = pkgs.callPackage ./nix/jsonnet.nix {};
Expand Down

0 comments on commit b9d2fad

Please sign in to comment.