2019-07-22 12:02:47 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2017-06-11 00:11:37 +00:00
|
|
|
|
2017-06-27 17:56:36 +00:00
|
|
|
bundlerApp {
|
|
|
|
pname = "corundum";
|
2017-06-11 00:11:37 +00:00
|
|
|
gemdir = ./.;
|
2017-06-11 00:38:49 +00:00
|
|
|
exes = [ "corundum-skel" ];
|
|
|
|
|
2019-07-22 12:02:47 +00:00
|
|
|
passthru.updateScript = bundlerUpdateScript "corundum";
|
|
|
|
|
2017-06-11 00:38:49 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "Tool and libraries for maintaining Ruby gems";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/nyarly/corundum";
|
2017-06-11 00:11:37 +00:00
|
|
|
license = licenses.mit;
|
2019-07-22 12:02:47 +00:00
|
|
|
maintainers = with maintainers; [ nyarly nicknovitski ];
|
2017-06-11 00:11:37 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|