aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/interpreters/clojure/babashka.nix
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2020-11-03 19:47:16 -0500
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-04 09:09:54 -0800
commit3341f6c1fc87099e906e6cc1f1a1437124cdf673 (patch)
tree2737f97c0d63e610debeac783e10e0e45b067cd9 /pkgs/development/interpreters/clojure/babashka.nix
parent0aaf9d61432d6fae51a8164bbb9fe97bd636441f (diff)
babashka,clj-kondo: Depend on graalvm-ce
Now that we have community builds of graalvm landed in #99631, both clj-kondo and babashka can depend on those versions of graalvm rather than the one that requires building from source - this can be built in hydra, and generally is much easier to build and test.
Diffstat (limited to 'pkgs/development/interpreters/clojure/babashka.nix')
-rw-r--r--pkgs/development/interpreters/clojure/babashka.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/clojure/babashka.nix b/pkgs/development/interpreters/clojure/babashka.nix
index c023aa65fdaa..22c83f99d5fb 100644
--- a/pkgs/development/interpreters/clojure/babashka.nix
+++ b/pkgs/development/interpreters/clojure/babashka.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, graalvm8, glibcLocales }:
+{ stdenv, fetchurl, graalvm8-ce, glibcLocales }:
with stdenv.lib;
stdenv.mkDerivation rec {
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
dontUnpack = true;
LC_ALL = "en_US.UTF-8";
- nativeBuildInputs = [ graalvm8 glibcLocales ];
+ nativeBuildInputs = [ graalvm8-ce glibcLocales ];
buildPhase = ''
native-image \
@@ -78,7 +78,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://github.com/borkdude/babashka";
license = licenses.epl10;
- platforms = graalvm8.meta.platforms;
+ platforms = graalvm8-ce.meta.platforms;
maintainers = with maintainers; [ bandresen bhougland DerGuteMoritz jlesquembre ];
};
}