Unverified Commit 4f9c8d25 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

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

parents 127f8c4b 02e7276e
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
@@ -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
    ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -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;
  };