diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2023-07-08 16:02:11 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2023-07-09 20:43:55 -0400 |
commit | 5277e7def7b167021ae49a3d101926b40b98e745 (patch) | |
tree | b20fee98c3dc04cbf783959e24e8606ae8a3d774 /nix-overlays/dub | |
parent | flake.nix (local filesystem) spine overlays (diff) |
flake nix build dub, set HOME, dub >= 1.31.0 fix
- fixes dub >= 1.31.0 build failure, attempted to
build in /homeless-shelter
Diffstat (limited to 'nix-overlays/dub')
-rw-r--r-- | nix-overlays/dub/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix-overlays/dub/default.nix b/nix-overlays/dub/default.nix index 0ebc576..3993f8d 100644 --- a/nix-overlays/dub/default.nix +++ b/nix-overlays/dub/default.nix @@ -4,7 +4,7 @@ assert dcompiler != null; stdenv.mkDerivation rec { pname = "dub"; - version = "1.30.0"; + version = "1.33.1"; enableParallelBuilding = true; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { owner = "dlang"; repo = "dub"; rev = "v${version}"; - sha256 = "sha256-iVl7bjblvIxvrUX7Phq6h4AIAmZjNVkGYYFA1hhsE7c="; + sha256 = "sha256-QFgUsO04VRXBDjGI5QQs7u9XrexG7/V34TMgJP1D8yA="; }; #postUnpack = '' |