mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
19 lines
431 B
Nix
19 lines
431 B
Nix
{ 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 ];
|
|
};
|
|
}
|