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