Fixed to work with updated nix-helpers

This commit is contained in:
2024-04-03 17:07:16 -07:00
parent 9a16c945fd
commit 9960525a3e
4 changed files with 928 additions and 75 deletions
+2 -4
View File
@@ -5,8 +5,7 @@
nixpkgs.url = "nixpkgs/nixos-23.11";
utils.url = "github:numtide/flake-utils";
helpers = {
url =
"git+https://git.fudo.org/fudo-public/nix-helpers.git?ref=with-deps";
url = "git+https://fudo.dev/public/nix-helpers.git";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@@ -20,7 +19,6 @@
milquetoast = helpers.packages."${system}".mkClojureLib {
name = "org.fudo/milquetoast";
src = ./.;
buildCommand = "clojure -T:build uberjar";
};
};
@@ -28,7 +26,7 @@
default = updateDeps;
updateDeps = pkgs.mkShell {
buildInputs = with helpers.packages."${system}";
[ updateClojureDeps ];
[ (updateClojureDeps { }) ];
};
};
});