diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2020-11-13 22:58:26 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2020-11-13 23:19:57 -0500 |
commit | 0de4f2c1f970d911cf413bab89ec91896b12c30b (patch) | |
tree | cb7b95cd325aed9c85949d0fa22a270c26eb012c /nixDevEnv/shells/packages-ldc.nix | |
parent | org tags (diff) |
ldc in need of newer dub
Diffstat (limited to 'nixDevEnv/shells/packages-ldc.nix')
-rw-r--r-- | nixDevEnv/shells/packages-ldc.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/nixDevEnv/shells/packages-ldc.nix b/nixDevEnv/shells/packages-ldc.nix new file mode 100644 index 0000000..9874b74 --- /dev/null +++ b/nixDevEnv/shells/packages-ldc.nix @@ -0,0 +1,18 @@ +{ pkgs ? import <nixpkgs> {} }: +let + dub2nix-src = fetchTarball { + url = "https://github.com/lionello/dub2nix/archive/master.tar.gz"; + }; + dub2nix = (import dub2nix-src) { inherit pkgs; }; +in +with pkgs; [ + nix + dub + ninja + ldc + rdmd + sqlite + dub2nix + nix-prefetch-git + validatePkgConfig +] |