diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-05-15 18:10:04 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-05-15 22:25:58 -0400 |
commit | 924fabf26347cf2da0a770cd16f956c26e4064f9 (patch) | |
tree | 80c97145dca8188df5f7131694e5dc2f5990b7ff /src/build_depends/dub2nix/dub2nix.nix | |
parent | cgi.d arsd update (diff) |
nix-build cleanup, external sources localized
- clean up as external sources kept locally, in
./src/ext_depends/
- remove dub2nix dependency, no longer needed/used
Diffstat (limited to 'src/build_depends/dub2nix/dub2nix.nix')
-rw-r--r-- | src/build_depends/dub2nix/dub2nix.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/build_depends/dub2nix/dub2nix.nix b/src/build_depends/dub2nix/dub2nix.nix deleted file mode 100644 index ef4bd5f..0000000 --- a/src/build_depends/dub2nix/dub2nix.nix +++ /dev/null @@ -1,17 +0,0 @@ -{pkgs}: -with (import ./mkDub.nix { - inherit pkgs; -}); -mkDubDerivation { - src = pkgs.lib.cleanSource ./.; - # dubJSON = ./dub.json; - # selections = ./dub.selections.nix; - version = "0.2.4"; - # doCheck = true; - propagatedBuildInputs = [ pkgs.nix-prefetch-git pkgs.cacert ]; - meta = with pkgs.stdenv.lib; { - homepage = "https://github.com/lionello/dub2nix"; - maintainers = [ maintainers.lionello ]; - license = licenses.mit; - }; -} |