diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-01-02 14:06:16 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-01-23 17:01:15 -0500 |
commit | 4437c10fad8925d6322c83bf1553daa9a36ceb31 (patch) | |
tree | 6d5a85e7d5da7d41320a9773bb8830ef4908e3df /nix/shell-packages.nix | |
parent | nix shebangs, consider (diff) |
nix, work on build
Diffstat (limited to 'nix/shell-packages.nix')
-rw-r--r-- | nix/shell-packages.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/nix/shell-packages.nix b/nix/shell-packages.nix new file mode 100644 index 0000000..9e40e24 --- /dev/null +++ b/nix/shell-packages.nix @@ -0,0 +1,15 @@ +{ 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; [ + nixFlakes + dub + ldc + sqlite + nix-prefetch-git + validatePkgConfig +] |