Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 16e34d25fd5b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6e089d301489
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 5, 2020

  1. babashka: 0.0.97 -> 0.2.3

    with #99631 and #102693 merged, it's possible to bump the babashka
    version again.
    
    However recent versions of babashka depend on java11 features and I
    spoke in Slack with the project lead and this java11 dependency will
    exist going forward.
    bennyandresen committed Nov 5, 2020
    Copy the full SHA
    172cbb8 View commit details
  2. Merge pull request #102867 from bennyandresen/babashka-update

    babashka: 0.0.97 -> 0.2.3
    timokau authored Nov 5, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6e089d3 View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/development/interpreters/clojure/babashka.nix
12 changes: 6 additions & 6 deletions pkgs/development/interpreters/clojure/babashka.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{ stdenv, fetchurl, graalvm8-ce, glibcLocales }:
{ stdenv, fetchurl, graalvm11-ce, glibcLocales }:

with stdenv.lib;
stdenv.mkDerivation rec {
pname = "babashka";
version = "0.0.97";
version = "0.2.3";

reflectionJson = fetchurl {
name = "reflection.json";
url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-reflection.json";
sha256 = "1gd9ih9l02n1j9qkbxb36d3cb5sddwvxiw8kkicgc4xig77lsa7z";
sha256 = "0lbdh3v3g3j00bn99bjhjj3gk1q9ks2alpvl9bxc00xpyw86f7z8";
};

src = fetchurl {
url = "https://github.com/borkdude/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar";
sha256 = "08py6bawfrhg90fbcnv2mq4c91g5wa1q2q6zdjy2i1b9q4x1654r";
sha256 = "0vh6k3dkzyk346jjzg6n4mdi65iybrmhb3js9lm73yc3ay2c5dyi";
};

dontUnpack = true;

LC_ALL = "en_US.UTF-8";
nativeBuildInputs = [ graalvm8-ce glibcLocales ];
nativeBuildInputs = [ graalvm11-ce glibcLocales ];

buildPhase = ''
native-image \
@@ -78,7 +78,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://github.com/borkdude/babashka";
license = licenses.epl10;
platforms = graalvm8-ce.meta.platforms;
platforms = graalvm11-ce.meta.platforms;
maintainers = with maintainers; [ bandresen bhougland DerGuteMoritz jlesquembre ];
};
}