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

16 lines
364 B
Nix
Raw Normal View History

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;
};
}