Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2019-09-19 16:59:42 +02:00
44 changed files with 2345 additions and 1008 deletions

View File

@@ -110,17 +110,17 @@ in {
#<generated>
# DO NOT EDIT! Automatically generated by ./update.py
radare2 = generic {
version_commit = "22646";
gittap = "3.8.0";
gittip = "b4860e4eecad2053202965926f16296864b2f1e5";
rev = "3.8.0";
version = "3.8.0";
sha256 = "0rx6az2vpqy12lvzpxx9pappqj84d88daj8bis3zsffqgmhsafcd";
version_commit = "22775";
gittap = "3.9.0";
gittip = "2afe613741d07f35a5d80bc4e2dade2113ae6a74";
rev = "3.9.0";
version = "3.9.0";
sha256 = "0jzz3fzcr9xm8q6n86mhrf30h6cbh147ss9h993cm34fd4d5z7ah";
cs_ver = "4.0.1";
cs_sha256 = "0ijwxxk71nr9z91yxw20zfj4bbsbrgvixps5c7cpj163xlzlwba6";
};
r2-for-cutter = generic {
version_commit = "22265";
version_commit = "22775";
gittap = "3.6.0";
gittip = "ff3bb6e3b2e6a519b4c975d05758c171a5186389";
rev = "ff3bb6e3b2e6a519b4c975d05758c171a5186389";

View File

@@ -51,7 +51,7 @@ GEM
gh_inspector (1.1.3)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
jazzy (0.11.0)
jazzy (0.11.1)
cocoapods (~> 1.5)
mustache (~> 1.1)
open4
@@ -69,9 +69,9 @@ GEM
netrc (0.11.0)
open4 (1.3.4)
redcarpet (3.5.0)
rouge (3.10.0)
rouge (3.11.0)
ruby-macho (1.4.0)
sassc (2.2.0)
sassc (2.2.1)
ffi (~> 1.9)
sqlite3 (1.4.1)
thread_safe (0.3.6)

View File

@@ -209,10 +209,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0cwsmijhb845lrkwq1gxwa6a698vp47gdxcpav30dghrf1ikyzqm";
sha256 = "0kdja4bhzak79xvfpwwakqsjw07vfg458d62k08a416im7xcfcmc";
type = "gem";
};
version = "0.11.0";
version = "0.11.1";
};
liferaft = {
source = {
@@ -301,10 +301,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "07j29vbgsi9v7kpx4lqpmh0hx59i420jig73dy46wx3id1i7vdqz";
sha256 = "1zsyv6abqrk7lpql5f1ja4m88bfy9qndi8xykpss6cpvjdmi3ydb";
type = "gem";
};
version = "3.10.0";
version = "3.11.0";
};
ruby-macho = {
groups = ["default"];
@@ -322,10 +322,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "178iflma5z4qk2lfzlxk8kh942skj45q6v6xwllkqng9xbjlyzkf";
sha256 = "09bnid7r5z5hcin5hykvpvv8xig27wbbckxwis60z2aaxq4j9siz";
type = "gem";
};
version = "2.2.0";
version = "2.2.1";
};
sqlite3 = {
groups = ["default"];

View File

@@ -1,22 +1,26 @@
{ stdenv, fetchFromGitHub, buildGoPackage }:
{ stdenv, fetchFromGitHub, buildGoModule }:
let
owner = "CircleCI-Public";
buildGoModule rec {
pname = "circleci-cli";
version = "0.1.2569";
in
buildGoPackage {
name = "${pname}-${version}";
inherit version;
version = "0.1.5879";
src = fetchFromGitHub {
inherit owner;
src = fetchFromGitHub {
owner = "CircleCI-Public";
repo = pname;
rev = "v${version}";
sha256 = "0ixiqx8rmia02r44zbhw149p5x9r9cv1fsnlhl8p2x5zd2bdr18x";
sha256 = "1471g56apaw0c5dpa0jrr7hvzh3kbwfr3yr0m4mz2dlf27d481ac";
};
goPackagePath = "github.com/${owner}/${pname}";
modSha256 = "0cvmcsl00jfikpkw3f7k5zw65156z5g5l2b6s5803a2i9d613268";
preBuild = ''
substituteInPlace data/data.go \
--replace 'packr.New("circleci-cli-box", "../_data")' 'packr.New("circleci-cli-box", "${placeholder "out"}/share/circleci-cli")'
'';
postInstall = ''
install -Dm644 -t $out/share/circleci-cli _data/data.yml
'';
meta = with stdenv.lib; {
# Box blurb edited from the AUR package circleci-cli
@@ -25,7 +29,6 @@ buildGoPackage {
run jobs as if they were running on the hosted CirleCI application.
'';
maintainers = with maintainers; [ synthetica ];
platforms = platforms.unix;
license = licenses.mit;
homepage = https://circleci.com/;
};

View File

@@ -1,9 +1,9 @@
{ stdenv, fetchurl, fetchgit, fetchpatch, makeWrapper
{ mkDerivation, lib, fetchurl, fetchgit, fetchpatch
, qtbase, qtquickcontrols, qtscript, qtdeclarative, qmake, llvmPackages_8
, withDocumentation ? false
}:
with stdenv.lib;
with lib;
let
baseVersion = "4.9";
@@ -21,7 +21,7 @@ let
});
in
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "qtcreator";
version = "${baseVersion}.${revision}";