aboutsummaryrefslogtreecommitdiffhomepage
path: root/nixDevEnv
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2020-11-09 13:56:05 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2020-11-09 14:29:46 -0500
commitd58389463a95647f49e4bae03bc2eb81be957f9c (patch)
tree723dadf8d01c9d4b8d7240e1a6c2f5edb3e5e0d3 /nixDevEnv
parentldc-1.23.0 overlay for nixos 20.09 (diff)
ldc current, ldc-1.24.0 available on nix 21.03
- without version overlay
Diffstat (limited to 'nixDevEnv')
-rw-r--r--nixDevEnv/overlays/ldcVersion.nix4
-rw-r--r--nixDevEnv/shells/shell-ldc-verUser.nix6
2 files changed, 3 insertions, 7 deletions
diff --git a/nixDevEnv/overlays/ldcVersion.nix b/nixDevEnv/overlays/ldcVersion.nix
index 688394d..5990004 100644
--- a/nixDevEnv/overlays/ldcVersion.nix
+++ b/nixDevEnv/overlays/ldcVersion.nix
@@ -1,7 +1,7 @@
self: super: rec {
pname = "ldc";
- version = "1.23.0";
- sha256 = "1fdgj222x29as466vdxy9c0m82zzlsb7vnvvh89n2riszcrx463d";
+ version = "1.24.0";
+ sha256 = "0g5svf55i0kq55q49awmwqj9qi1n907cyrn1vjdjgs8nx6nn35gx";
ldc = super.ldc.overrideAttrs(oldAttrs: rec {
inherit pname version sha256;
name = "${pname}-${version}";
diff --git a/nixDevEnv/shells/shell-ldc-verUser.nix b/nixDevEnv/shells/shell-ldc-verUser.nix
index 8035327..9d2c3e1 100644
--- a/nixDevEnv/shells/shell-ldc-verUser.nix
+++ b/nixDevEnv/shells/shell-ldc-verUser.nix
@@ -1,8 +1,4 @@
-{ pkgs ? import <nixpkgs>
- { overlays = [
- (import ../overlays/ldcVersion.nix)
- ]; }
-}:
+{ pkgs ? import <nixpkgs> {}, }:
let
dub2nix-src = fetchTarball {
url = "https://github.com/lionello/dub2nix/archive/master.tar.gz";