1{ lib, bundlerApp }:
2
3bundlerApp {
4 pname = "corundum";
5 gemdir = ./.;
6 exes = [ "corundum-skel" ];
7
8 meta = with lib; {
9 description = "Tool and libraries for maintaining Ruby gems.";
10 homepage = https://github.com/nyarly/corundum;
11 license = licenses.mit;
12 maintainers = [ maintainers.nyarly ];
13 platforms = platforms.unix;
14 };
15}