biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gemstash / default.nix
blobce8fde604ab5837178b2920e66cc598824a8e5d3
1 { lib, bundlerApp, bundlerUpdateScript, nixosTests }:
3 bundlerApp rec {
4   pname = "gemstash";
5   gemdir = ./.;
6   exes = [ pname ];
8   passthru = {
9     updateScript = bundlerUpdateScript pname;
10     tests = { inherit (nixosTests) gemstash; };
11   };
13   meta = with lib; {
14     description = "A cache for RubyGems.org and a private gem server";
15     homepage    = "https://github.com/rubygems/gemstash";
16     license     = licenses.mit;
17     maintainers = [ maintainers.viraptor ];
18   };