Unverified Commit df3545e2 authored by Raghav Sood's avatar Raghav Sood Committed by GitHub
Browse files

Merge pull request #313054 from guhou/remove-git-credential-1password

git-credential-1password: Remove package
parents 1f42f627 931de4bd
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "git-credential-1password";
  version = "1.2.1";

  src = fetchFromGitHub {
    owner = "develerik";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-8qdUOJ0MOk/xVvp3kDuxNRo3lMEJhLeI3Fle0tuZez0=";
  };

  vendorHash = "sha256-B6BlVnUX4XLT+9EpL63Ht4S8Wo84RsmY99CL+srQfpw=";

  meta = with lib; {
    description = "A git credential helper for 1Password";
    homepage = "https://github.com/develerik/git-credential-1password";
    changelog = "https://github.com/develerik/git-credential-1password/releases/tag/v${version}";
    license = licenses.isc;
    maintainers = [ maintainers.ivankovnatsky ];
    mainProgram = "git-credential-1password";
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -407,6 +407,7 @@ mapAliases ({
  ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18
  go-dependency-manager = throw "'go-dependency-manager' is unmaintained and the go community now uses 'go.mod' mostly instead"; # Added 2023-10-04
  gotktrix = throw "'gotktrix' has been removed, as it was broken and unmaintained"; # Added 2023-12-06
  git-credential-1password = throw "'git-credential-1password' has been removed, as the upstream project is deleted."; # Added 2024-05-20
  git-subset = throw "'git-subset' has been removed in favor of 'git-filter-repo'"; # Added 2023-01-13

  gitAndTools = self // {
+0 −2
Original line number Diff line number Diff line
@@ -2332,8 +2332,6 @@ with pkgs;
  git-crecord = callPackage ../applications/version-management/git-crecord { };
  git-credential-1password = callPackage ../applications/version-management/git-credential-1password { };
  git-credential-keepassxc = darwin.apple_sdk_11_0.callPackage ../applications/version-management/git-credential-keepassxc {
    inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation;
  };