Move build.clj to src/

This commit is contained in:
2022-05-31 13:07:35 -07:00
parent 629903b801
commit 5250191dc1
4 changed files with 26 additions and 30 deletions
+4 -4
View File
@@ -26,11 +26,11 @@
inherit (gitignore.lib) gitignoreSource;
};
in {
packages."${system}" = { inherit build-tools-jar; };
defaultPackage."${system}" = self.packages."${system}".build-tools-jar;
lib = {
mkClojureLib = pkgs.callPackage ./mkClojureLib.nix {
inherit build-tools-jar;
inherit (to-edn.lib) toEDN;
};
mkClojureLib =
pkgs.callPackage ./mkClojureLib.nix { inherit (to-edn.lib) toEDN; };
};
devShell."${system}" =
pkgs.mkShell { buildInputs = with pkgs; [ clojure clj2nix ]; };