depot/third_party/nixpkgs/pkgs/development/tools/gemstash/default.nix

24 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 = "Cache for RubyGems.org and a private gem server";
homepage = "https://github.com/rubygems/gemstash";
license = licenses.mit;
maintainers = [ maintainers.viraptor ];
};
}