Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2020-06-04 15:25:54 +02:00
461 changed files with 22534 additions and 21978 deletions

View File

@@ -2,7 +2,7 @@
buildGoPackage rec {
pname = "bazel-buildtools";
version = "2.2.1";
version = "3.2.0";
goPackagePath = "github.com/bazelbuild/buildtools";
@@ -10,7 +10,7 @@ buildGoPackage rec {
owner = "bazelbuild";
repo = "buildtools";
rev = version;
sha256 = "165jvn7r7bxivb8mpvp6dni5a5ns9a3vm6y5clyxdbjhfkll8wra";
sha256 = "0r3vc47w5vxgy5rzh75q0lng1c490ic1a1dcc0ih7dcl6i5p1p88";
};
goDeps = ./deps.nix;

View File

@@ -1,13 +1,14 @@
{stdenv, fetchgit, perl}:
{ stdenv, fetchFromGitHub, perl }:
stdenv.mkDerivation {
pname = "colormake";
version = "2.1.0";
buildInputs = [perl];
buildInputs = [ perl ];
src = fetchgit {
url = "https://github.com/pagekite/Colormake.git";
src = fetchFromGitHub {
owner = "pagekite";
repo = "Colormake";
rev = "66544f40d";
sha256 = "8e714c5540305d169989d9387dbac47b8b9fb2cfb424af7bcd412bfe684dc6d7";
};
@@ -17,9 +18,11 @@ stdenv.mkDerivation {
cp -fa colormake.pl colormake colormake-short clmake clmake-short $out/bin
'';
meta = {
meta = with stdenv.lib; {
description = "Simple wrapper around make to colorize the output";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
homepage = "https://bre.klaki.net/programs/colormake/";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ bhipple ];
};
}

View File

@@ -12,7 +12,7 @@ python3Packages.buildPythonApplication rec {
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "p3Fu6uj43/AC5BR2Qliatklv+DnkN2pa7XYfg8H6BFU=";
sha256 = "1p4n0b6jn8pyj6rwxg48ayphji8v1482cabrwhzf2avnf92znxig";
};
postFixup = ''

View File

@@ -1,8 +1,8 @@
{ stdenv, fetchFromGitHub, which, curl, makeWrapper, jdk }:
let
rev = "f0669e9b6745b65fae3ec58c2d6a2bef133db456";
version = "2019-10-21";
rev = "fa06c268993aa72fc094dce06a71182827aad395";
version = "2020-06-01";
in
stdenv.mkDerivation {
name = "sbt-extras-${version}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
owner = "paulp";
repo = "sbt-extras";
inherit rev;
sha256 = "1pc8l78qp51ixa26z0n1djwmazpxw1p4j4w4njil7ywxl9xvr92i";
sha256 = "0a4dxpvw21yi3pji1s31pp17xplmczn2f2yijn58an9m2angw83j";
};
dontBuild = true;