summaryrefslogtreecommitdiffhomepage
path: root/nix-overlays/dmd/bootstrap.nix
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2023-06-09 16:48:04 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2023-06-09 16:48:04 -0400
commit77ca961d67f7dc1c6de5b5f89f7a55ff703bddde (patch)
tree945510aa8c5995b775e1a57101b4d5d11eb38f99 /nix-overlays/dmd/bootstrap.nix
parentnix dev + update direnv 2.2.1 => 2.3.0 (diff)
nix overlays introduced and tracked
Diffstat (limited to 'nix-overlays/dmd/bootstrap.nix')
-rw-r--r--nix-overlays/dmd/bootstrap.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/nix-overlays/dmd/bootstrap.nix b/nix-overlays/dmd/bootstrap.nix
new file mode 100644
index 0000000..16aa5ed
--- /dev/null
+++ b/nix-overlays/dmd/bootstrap.nix
@@ -0,0 +1,9 @@
+{ callPackage }:
+callPackage ./binary.nix {
+ version = "2.090.1";
+ hashes = {
+ # Get these from `nix-prefetch-url http://downloads.dlang.org/releases/2.x/2.090.1/dmd.2.090.1.linux.tar.xz` etc..
+ osx = "sha256-9HwGVO/8jfZ6aTiDIUi8w4C4Ukry0uUS8ACP3Ig8dmU=";
+ linux = "sha256-ByCrIA4Nt7i9YT0L19VXIL1IqIp+iObcZux407amZu4=";
+ };
+}