nixpkgs-suyu/pkgs/development/tools/build-managers/drake/default.nix

18 lines
454 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2017-01-24 19:36:22 +01:00
2019-04-30 16:22:26 +02:00
bundlerApp {
pname = "drake";
gemdir = ./.;
exes = [ "drake" ];
2017-01-24 19:36:22 +01:00
passthru.updateScript = bundlerUpdateScript "drake";
2017-01-24 19:36:22 +01: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 19:36:22 +01:00
license = licenses.mit;
platforms = platforms.unix;
};
}