gemstash: qualify lib attributes, hardcode pname

This commit is contained in:
Guy Chronister
2025-11-04 08:53:41 -06:00
parent 1b2b5808e8
commit 02e7276eee
+8 -6
View File
@@ -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
];
};
}