nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 24 lines 479 B view raw
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5}: 6 7bundlerApp { 8 pname = "rake"; 9 gemdir = ./.; 10 exes = [ "rake" ]; 11 12 passthru.updateScript = bundlerUpdateScript "rake"; 13 14 meta = { 15 description = "Software task management and build automation tool"; 16 homepage = "https://github.com/ruby/rake"; 17 license = with lib.licenses; mit; 18 maintainers = with lib.maintainers; [ 19 nicknovitski 20 ]; 21 platforms = lib.platforms.unix; 22 mainProgram = "rake"; 23 }; 24}