nixpkgs/pkgs/development/tools/build-managers/drake/default.nix
2019-04-30 17:50:25 +02:00

16 lines
364 B
Nix

{ lib, bundlerApp }:
bundlerApp {
pname = "drake";
gemdir = ./.;
exes = [ "drake" ];
meta = with lib; {
description = "A branch of Rake supporting automatic parallelizing of tasks";
homepage = http://quix.github.io/rake/;
maintainers = with maintainers; [ romildo manveru ];
license = licenses.mit;
platforms = platforms.unix;
};
}