gemstash: migrate to by name & refactor (#458497)

This commit is contained in:
Yohann Boniface
2025-11-07 22:41:29 +00:00
committed by GitHub
5 changed files with 8 additions and 8 deletions
@@ -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
];
};
}
-2
View File
@@ -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;
};