3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/gemstash/default.nix

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

17 lines
406 B
Nix
Raw Normal View History

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