Unverified Commit a193d6e9 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #235396 from Enzime/add/hishtory

hishtory: init at 0.208
parents 2aef5cd1 a5ba7119
Loading
Loading
Loading
Loading
+37 −0
Original line number Diff line number Diff line
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
  pname = "hishtory";
  version = "0.208";

  src = fetchFromGitHub {
    owner = "ddworken";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-TEto5lLH5nwqJ9PaYKrYCNW4/zrIICANQlGmqwDbOm4=";
  };

  vendorHash = "sha256-FodgIELV5JbqP3h/mIDDYARZcols9ZEtVREW1853EOI=";

  ldflags = [ "-X github.com/ddworken/hishtory/client/lib.Version=${version}" ];

  excludedPackages = [ "backend/server" ];

  postInstall = ''
    mkdir -p $out/share/hishtory
    cp client/lib/config.* $out/share/hishtory
  '';

  doCheck = false;

  meta = with lib; {
    description = "Your shell history: synced, queryable, and in context";
    homepage = "https://github.com/ddworken/hishtory";
    license = licenses.mit;
    maintainers = with maintainers; [ Enzime ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -14532,6 +14532,8 @@ with pkgs;
  fzf-git-sh = callPackage ../shells/fzf-git-sh { };
  hishtory = callPackage ../shells/hishtory { };
  ion = callPackage ../shells/ion { };
  jush = callPackage ../shells/jush { };