nixpkgs/pkgs/development/tools/corundum/default.nix
2020-04-10 17:54:53 +01:00

18 lines
462 B
Nix

{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "corundum";
gemdir = ./.;
exes = [ "corundum-skel" ];
passthru.updateScript = bundlerUpdateScript "corundum";
meta = with lib; {
description = "Tool and libraries for maintaining Ruby gems.";
homepage = "https://github.com/nyarly/corundum";
license = licenses.mit;
maintainers = with maintainers; [ nyarly nicknovitski ];
platforms = platforms.unix;
};
}