1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/build-managers/rake/default.nix

18 lines
445 B
Nix
Raw Normal View History

{ lib, bundlerApp, bundlerUpdateScript }:
2016-03-17 18:05:11 +00:00
2019-04-30 17:04:35 +01:00
bundlerApp {
pname = "rake";
2017-01-17 23:41:00 +00:00
gemdir = ./.;
2019-04-30 17:04:35 +01:00
exes = [ "rake" ];
2017-01-17 23:41:00 +00:00
passthru.updateScript = bundlerUpdateScript "rake";
2016-03-17 18:05:11 +00:00
meta = with lib; {
description = "A software task management and build automation tool";
homepage = "https://github.com/ruby/rake";
2016-03-17 18:05:11 +00:00
license = with licenses; mit;
maintainers = with maintainers; [ manveru nicknovitski ];
2016-03-17 18:05:11 +00:00
platforms = platforms.unix;
};
}