Skip to content

Commit

Permalink
update nix-tools-static.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
Auto Update Bot committed Mar 25, 2024
1 parent cfff31b commit e91ff95
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions nix-tools-static.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
pkgs: let baseurl = "https://github.com/input-output-hk/haskell.nix/releases/download/nix-tools-0.1.6/"; in {
aarch64-darwin = pkgs.fetchurl {
name = "aarch64-darwin-nix-tools-static";
url = "${baseurl}aarch64-darwin-nix-tools-static.zip";
sha256 = "sha256-T8yZHm5KLVSxqRIsHN983mbq4ZS/kVZKgkIeD1vhA04=";
};
x86_64-darwin = pkgs.fetchurl {
name = "x86_64-darwin-nix-tools-static";
url = "${baseurl}x86_64-darwin-nix-tools-static.zip";
sha256 = "sha256-7X3mV1O/WNLNyKBI8q7oax1BrSqisBWwdENNUPJv4sA=";
};
aarch64-linux = pkgs.fetchurl {
name = "aarch64-linux-nix-tools-static";
url = "${baseurl}aarch64-linux-nix-tools-static.zip";
sha256 = "sha256-VlJZTMWK9weoneyMrnYuRUehCmrXEwM3yoP+wFjo6CQ=";
};
x86_64-linux = pkgs.fetchurl {
name = "x86_64-linux-nix-tools-static";
url = "${baseurl}x86_64-linux-nix-tools-static.zip";
sha256 = "sha256-C54NfAmyMbKueRmLrlbrG3PBzOFruy0dlC2MC0BME7o=";
};
}

0 comments on commit e91ff95

Please sign in to comment.