18 lines
456 B
Nix
Raw Normal View History

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