Merge pull request #43879 from Tomahna/bloop

bloop: 1.0.0-M11 -> 1.0.0
This commit is contained in:
Jörg Thalheim 2018-07-21 15:30:56 +01:00 committed by GitHub
commit 1a969d13d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View file

@ -2,7 +2,7 @@
let
baseName = "bloop";
version = "1.0.0-M11";
version = "1.0.0";
deps = stdenv.mkDerivation {
name = "${baseName}-deps-${version}";
buildCommand = ''
@ -16,12 +16,12 @@ let
'';
outputHashMode = "recursive";
outputHashAlgo = "sha256";
outputHash = "00p9mrwcms3skzicyj8frqs0r0a2rfvk5fbh58rk5yvcvkwl4fy1";
outputHash = "0dgllwv9rjvpzvlbwwiynmfp15j2x48al7cb5rlmhq0an3q81hbh";
};
in
stdenv.mkDerivation rec {
name = "${baseName}-${version}";
nailgunCommit = "60c2d130";
nailgunCommit = "0c8b937b";
buildInputs = [ jdk makeWrapper deps ];

View file

@ -13,6 +13,7 @@ stdenv.mkDerivation rec {
buildCommand = ''
install -Dm555 $src $out/bin/coursier
patchShebangs $out/bin/coursier
wrapProgram $out/bin/coursier --prefix PATH ":" ${jre}/bin
'';