3
0
Fork 0
forked from mirrors/nixpkgs

drake: init at 0.9.2.0.3.1

This commit is contained in:
romildo 2017-01-24 16:36:22 -02:00
parent 1853f174d1
commit a0d29cf33e
5 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'drake'

View file

@ -0,0 +1,15 @@
GEM
remote: https://rubygems.org/
specs:
comp_tree (1.1.3)
drake (0.9.2.0.3.1)
comp_tree (>= 1.1.3)
PLATFORMS
ruby
DEPENDENCIES
drake
BUNDLED WITH
1.13.7

View file

@ -0,0 +1,18 @@
{ lib, bundlerEnv, ruby }:
bundlerEnv {
name = "drake-0.9.2.0.3.1";
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/;
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ romildo ];
};
}

View file

@ -0,0 +1,18 @@
{
comp_tree = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "0dj9lkfxcczn67l1j12dcxswrfxxd1zgxa344zk6vqs2gwwhy9m9";
type = "gem";
};
version = "1.1.3";
};
drake = {
source = {
remotes = ["https://rubygems.org"];
sha256 = "09gkmdshwdmdnkdxi03dv4rk1dip0wdv6dx14wscrmi0jyk86yag";
type = "gem";
};
version = "0.9.2.0.3.1";
};
}

View file

@ -6293,6 +6293,8 @@ in
doxygen_gui = lowPrio (doxygen.override { inherit qt4; });
drake = callPackage ../development/tools/build-managers/drake { };
drush = callPackage ../development/tools/misc/drush { };
editorconfig-core-c = callPackage ../development/tools/misc/editorconfig-core-c { };