nixpkgs/pkgs/development/tools/corundum/default.nix

18 lines
460 B
Nix
Raw Normal View History

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