nixos/crab-hole: init (#341598)
[NixPkgs.git] / pkgs / development / tools / corundum / default.nix
blob8864f859a583d199da22b28f15699096b44b41f8
2   lib,
3   bundlerApp,
4   bundlerUpdateScript,
5 }:
7 bundlerApp {
8   pname = "corundum";
9   gemdir = ./.;
10   exes = [ "corundum-skel" ];
12   passthru.updateScript = bundlerUpdateScript "corundum";
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   };