aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2026-05-21 13:27:08 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2026-05-21 13:27:08 -0400
commit12a85a725d9a88d4f9b9d691bb5d856dcdfce5c8 (patch)
treea67f974cb35157e313e881429d198407dda369e3 /flake.nix
parentsource_pod: --pod2 include (doc abstraction) .ssp (diff)
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 8492215..940e4ab 100644
--- a/flake.nix
+++ b/flake.nix
@@ -7,7 +7,7 @@
...
}@inputs: let
pname = "spine";
- version = "0.19.0";
+ version = "0.20.0";
supportedSystems = ["x86_64-linux"]; # [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;}); # nixpkgs instantiated for supported system types
@@ -143,7 +143,7 @@
#default = import ./shell.nix {pkgs = pkgs-nix; flake = self;};
dsh-overlay = mkDevShell {
pkgs = pkgs-ovl;
- # "spine-0.19.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0";
+ # "spine-0.20.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0";
name = "spine-${version} dev shell (overlay ldc)";
compiler = pkgs-ovl.ldc;
};
@@ -161,13 +161,13 @@
};
dsh-overlay-dmd = mkDevShell {
pkgs = pkgs-ovl;
- # "spine-0.19.0 base dev shell, dmd-2.111.0, dub-1.40.0 - dtools-2.110.0";
+ # "spine-0.20.0 base dev shell, dmd-2.111.0, dub-1.40.0 - dtools-2.110.0";
name = "spine-${version} dev shell (overlay dmd)";
compiler = pkgs-ovl.dmd;
};
dsh-overlay-ldc = mkDevShell {
pkgs = pkgs-ovl;
- # "spine-0.19.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0";
+ # "spine-0.20.0 base dev shell, ldc-1.42.0, dub-1.40.0 - dtools-2.110.0";
name = "spine-${version} dev shell (overlay ldc)";
compiler = pkgs-ovl.ldc;
};