2023-03-15 16:39:30 +00:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript, nixosTests }:
|
2022-07-18 16:21:45 +00:00
|
|
|
|
|
|
|
bundlerApp rec {
|
|
|
|
pname = "gemstash";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [ pname ];
|
|
|
|
|
2023-03-15 16:39:30 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = bundlerUpdateScript pname;
|
|
|
|
tests = { inherit (nixosTests) gemstash; };
|
|
|
|
};
|
2022-07-18 16:21:45 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|