Updated dependencies, use new nix-helpers

This commit is contained in:
2024-04-04 13:11:53 -07:00
parent 4a38a05d1a
commit 06c061a7ca
4 changed files with 367 additions and 361 deletions
+4 -3
View File
@@ -5,7 +5,7 @@
nixpkgs.url = "nixpkgs/nixos-23.11";
utils.url = "github:numtide/flake-utils";
helpers = {
url = "git+https://fudo.dev/public/nix-helpers.git?ref=with-deps";
url = "git+https://fudo.dev/public/nix-helpers.git";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@@ -19,7 +19,8 @@
notifier = helpers.packages."${system}".mkClojureLib {
name = "org.fudo/notifier";
src = ./.;
buildCommand = "clojure -T:build uberjar";
clojure-src-dirs = [ "src/clj" ];
java-src-dirs = [ "src/java" ];
};
};
@@ -27,7 +28,7 @@
default = updateDeps;
updateDeps = pkgs.mkShell {
buildInputs = with helpers.packages."${system}";
[ updateClojureDeps ];
[ (updateClojureDeps { }) ];
};
};
});