2019-04-30 15:22:26 +01:00
|
|
|
{ lib, bundlerApp }:
|
2017-01-24 18:36:22 +00:00
|
|
|
|
2019-04-30 15:22:26 +01:00
|
|
|
bundlerApp {
|
|
|
|
pname = "drake";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ "drake" ];
|
2017-01-24 18:36:22 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A branch of Rake supporting automatic parallelizing of tasks";
|
|
|
|
homepage = http://quix.github.io/rake/;
|
2019-04-30 15:22:26 +01:00
|
|
|
maintainers = with maintainers; [ romildo manveru ];
|
2017-01-24 18:36:22 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|