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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
479 B
Nix
Raw Normal View History

2022-08-11 10:10:58 +00:00
{ lib, bundlerApp, bundlerUpdateScript, nixosTests }:
2022-03-04 10:12:27 +00:00
bundlerApp rec {
pname = "gemstash";
gemdir = ./.;
exes = [ pname ];
2022-08-11 10:10:58 +00:00
passthru = {
updateScript = bundlerUpdateScript pname;
tests = { inherit (nixosTests) gemstash; };
};
2022-03-04 10:12:27 +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 ];
};
}