Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2019-05-04 17:34:04 +02:00
119 changed files with 2217 additions and 1438 deletions
@@ -12,4 +12,4 @@ DEPENDENCIES
drake
BUNDLED WITH
1.13.7
1.17.2
@@ -1,18 +1,15 @@
{ lib, bundlerEnv, ruby }:
{ lib, bundlerApp }:
bundlerEnv {
name = "drake-0.9.2.0.3.1";
bundlerApp {
pname = "drake";
gemdir = ./.;
exes = [ "drake" ];
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = with lib; {
description = "A branch of Rake supporting automatic parallelizing of tasks";
homepage = http://quix.github.io/rake/;
maintainers = with maintainers; [ romildo manveru ];
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ romildo ];
};
}
@@ -1,5 +1,7 @@
{
comp_tree = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0dj9lkfxcczn67l1j12dcxswrfxxd1zgxa344zk6vqs2gwwhy9m9";
@@ -8,6 +10,9 @@
version = "1.1.3";
};
drake = {
dependencies = ["comp_tree"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "09gkmdshwdmdnkdxi03dv4rk1dip0wdv6dx14wscrmi0jyk86yag";
@@ -1,7 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
rake (12.3.1)
rake (12.3.2)
PLATFORMS
ruby
@@ -10,4 +10,4 @@ DEPENDENCIES
rake
BUNDLED WITH
1.17.1
1.17.2
@@ -1,15 +1,15 @@
{ lib, bundlerEnv, ruby }:
{ lib, bundlerApp }:
bundlerEnv {
name = "rake-${(import ./gemset.nix).rake.version}";
inherit ruby;
bundlerApp {
pname = "rake";
gemdir = ./.;
exes = [ "rake" ];
meta = with lib; {
description = "A software task management and build automation tool";
homepage = https://github.com/ruby/rake;
license = with licenses; mit;
maintainers = with maintainers; [ manveru ];
platforms = platforms.unix;
};
}
@@ -1,10 +1,12 @@
{
rake = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1idi53jay34ba9j68c3mfr9wwkg3cd9qh0fn9cg42hv72c6q8dyg";
sha256 = "1sy5a7nh6xjdc9yhcw31jji7ssrf9v5806hn95gbrzr998a2ydjn";
type = "gem";
};
version = "12.3.1";
version = "12.3.2";
};
}