nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "drake";
9 gemdir = ./.;
10 exes = [ "drake" ];
11
12 passthru.updateScript = bundlerUpdateScript "drake";
13
14 meta = {
15 description = "Branch of Rake supporting automatic parallelizing of tasks";
16 homepage = "http://quix.github.io/rake/";
17 maintainers = with lib.maintainers; [
18 romildo
19 nicknovitski
20 ];
21 license = lib.licenses.mit;
22 platforms = lib.platforms.unix;
23 };
24}