nixpkgs/pkgs/development/tools/gemstash/default.nix
2023-03-07 15:56:56 +11:00

20 lines
479 B
Nix

{ 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 ];
};
}