Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 bundlerApp, 4 bundlerUpdateScript, 5 ruby, 6}: 7 8bundlerApp rec { 9 inherit ruby; 10 11 pname = "terraforming"; 12 gemdir = ./.; 13 exes = [ "terraforming" ]; 14 15 passthru.updateScript = bundlerUpdateScript "terraforming"; 16 17 meta = with lib; { 18 inherit (ruby.meta) platforms; 19 20 description = "Export existing AWS resources to Terraform style (tf, tfstate)"; 21 homepage = "https://github.com/dtan4/terraforming"; 22 license = with licenses; mit; 23 maintainers = with maintainers; [ kalbasit ]; 24 }; 25}