gemstash: migrate to by name & refactor (#458497)
This commit is contained in:
@@ -5,20 +5,22 @@
|
||||
nixosTests,
|
||||
}:
|
||||
|
||||
bundlerApp rec {
|
||||
bundlerApp {
|
||||
pname = "gemstash";
|
||||
gemdir = ./.;
|
||||
exes = [ pname ];
|
||||
exes = [ "gemstash" ];
|
||||
|
||||
passthru = {
|
||||
updateScript = bundlerUpdateScript pname;
|
||||
updateScript = bundlerUpdateScript "gemstash";
|
||||
tests = { inherit (nixosTests) gemstash; };
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
meta = {
|
||||
description = "Cache for RubyGems.org and a private gem server";
|
||||
homepage = "https://github.com/rubygems/gemstash";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.viraptor ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
viraptor
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -2730,8 +2730,6 @@ with pkgs;
|
||||
|
||||
fluentd = callPackage ../tools/misc/fluentd { };
|
||||
|
||||
gemstash = callPackage ../development/tools/gemstash { };
|
||||
|
||||
lp_solve = callPackage ../applications/science/math/lp_solve {
|
||||
inherit (darwin) autoSignDarwinBinariesHook;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user