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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
461 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; {
description = "Tool and libraries for maintaining Ruby gems";
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;
};
}