diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-04-20 19:13:21 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-04-20 19:16:39 -0400 |
commit | 08e51e75cab75abc20992faed5fd8215d1b48d28 (patch) | |
tree | cfc56e49e4f77363d02b22b3f0342ee1cbc27f20 /nix/mkDub.nix | |
parent | ext-dep: d2sqlite3 updated (diff) |
spine_build_scaffold: nix related housekeeping
- mkDub.nix (dub2nix) use lib,
stdenv.lib deprecated
- .envrc stop using lorri
- .envrc-local_ set local variables as needed
Diffstat (limited to 'nix/mkDub.nix')
-rw-r--r-- | nix/mkDub.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/mkDub.nix b/nix/mkDub.nix index 5d34ac9..2121166 100644 --- a/nix/mkDub.nix +++ b/nix/mkDub.nix @@ -1,11 +1,12 @@ { pkgs ? import <nixpkgs> {}, stdenv ? pkgs.stdenv, + lib ? pkgs.lib, ldc ? null, dcompiler ? pkgs.ldc, dub ? pkgs.dub }: assert dcompiler != null; -with stdenv; +with stdenv lib; let # Filter function to remove the .dub package folder from src filterDub = name: type: let baseName = baseNameOf (toString name); in ! ( |