aboutsummaryrefslogtreecommitdiffhomepage
path: root/nixEnv/overlays
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2021-01-02 14:06:16 -0500
committerRalph Amissah <ralph.amissah@gmail.com>2021-01-23 17:01:15 -0500
commit4437c10fad8925d6322c83bf1553daa9a36ceb31 (patch)
tree6d5a85e7d5da7d41320a9773bb8830ef4908e3df /nixEnv/overlays
parentnix shebangs, consider (diff)
nix, work on build
Diffstat (limited to 'nixEnv/overlays')
-rw-r--r--nixEnv/overlays/ldcVersion.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/nixEnv/overlays/ldcVersion.nix b/nixEnv/overlays/ldcVersion.nix
deleted file mode 100644
index 5bc7f7a..0000000
--- a/nixEnv/overlays/ldcVersion.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-self: super: rec {
- ldc = super.ldc.overrideAttrs(oldAttrs: rec {
- pname = "ldc";
- version = "1.24.0";
- sha256 = "0g5svf55i0kq55q49awmwqj9qi1n907cyrn1vjdjgs8nx6nn35gx";
- name = "${pname}-${version}";
- src = super.fetchurl {
- url = "https://github.com/ldc-developers/ldc/releases/download/v${version}/ldc-${version}-src.tar.gz";
- sha256 = sha256;
- };
- postUnpack = ''
- patchShebangs .
- '';
- });
-}