forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
babashka: use upstream version of Clojure tools
As recommended by @borkdude[1], we should use the Clojure tools version included in a particular upstream release since the code might not always work with more recent versions. [1] borkdude/deps.clj#113 (comment)
- Loading branch information
1 parent
5ef1017
commit 9e2ee4c
Showing
3 changed files
with
131 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This file tracks the Clojure tools version required by babashka. | ||
# See https://github.com/borkdude/deps.clj#deps_clj_tools_version for background. | ||
# The `updateScript` provided in default.nix takes care of keeping it in sync, as well. | ||
{ clojure | ||
, fetchurl | ||
}: | ||
clojure.overrideAttrs (previousAttrs: { | ||
pname = "babashka-clojure-tools"; | ||
version = "1.11.1.1403"; | ||
|
||
src = fetchurl { | ||
url = previousAttrs.src.url; | ||
hash = "sha256-bVNHEEzpPanPF8pfDP51d13bxv9gZGzqczNmFQOk6zI="; | ||
}; | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters