summary refs log tree commit diff
path: root/pkgs/development/tools/gemstash/default.nix
blob: ce8fde604ab5837178b2920e66cc598824a8e5d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, bundlerApp, bundlerUpdateScript, nixosTests }:

bundlerApp rec {
  pname = "gemstash";
  gemdir = ./.;
  exes = [ pname ];

  passthru = {
    updateScript = bundlerUpdateScript pname;
    tests = { inherit (nixosTests) gemstash; };
  };

  meta = with lib; {
    description = "A cache for RubyGems.org and a private gem server";
    homepage    = "https://github.com/rubygems/gemstash";
    license     = licenses.mit;
    maintainers = [ maintainers.viraptor ];
  };
}