Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 bundlerApp,
4 bundlerUpdateScript,
5}:
6
7bundlerApp {
8 pname = "corundum";
9 gemdir = ./.;
10 exes = [ "corundum-skel" ];
11
12 passthru.updateScript = bundlerUpdateScript "corundum";
13
14 meta = with lib; {
15 description = "Tool and libraries for maintaining Ruby gems";
16 homepage = "https://github.com/nyarly/corundum";
17 license = licenses.mit;
18 maintainers = with maintainers; [
19 nyarly
20 nicknovitski
21 ];
22 platforms = platforms.unix;
23 };
24}