coursier: 1.0.0-M15-5 -> 1.0.0-RC1

This commit is contained in:
Tim Steinbach 2017-04-08 15:03:33 -04:00
parent 16e12a6c42
commit 9d94e100f5
No known key found for this signature in database
GPG key ID: 472BFCCA96BD0EDA

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre }:
stdenv.mkDerivation rec {
name = "coursier-${version}";
version = "1.0.0-M15-5";
name = "coursier-${version}";
version = "1.0.0-RC1";
src = fetchurl {
url = "https://github.com/coursier/coursier/raw/v${version}/coursier";
sha256 = "610c5fc08d0137c5270cefd14623120ab10cd81b9f48e43093893ac8d00484c9";
url = "https://github.com/coursier/coursier/raw/v${version}/coursier";
sha256 = "0dxwhqp7m7nmal8wn4chlmyvhdh6v3ja0nfz9x952kacf2vpnqw3";
};
nativeBuildInputs = [ makeWrapper ];
@ -21,9 +21,9 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
homepage = http://get-coursier.io/;
homepage = http://get-coursier.io/;
description = "A Scala library to fetch dependencies from Maven / Ivy repositories";
license = licenses.asl20;
license = licenses.asl20;
maintainers = with maintainers; [ adelbertc nequissimus ];
};
}