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

git-credential-1password: Remove package

authored by Raghav Sood and committed by GitHub df3545e2 1f42f627

+1 -26
-24
pkgs/applications/version-management/git-credential-1password/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub }: 2 - 3 - buildGoModule rec { 4 - pname = "git-credential-1password"; 5 - version = "1.2.1"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "develerik"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "sha256-8qdUOJ0MOk/xVvp3kDuxNRo3lMEJhLeI3Fle0tuZez0="; 12 - }; 13 - 14 - vendorHash = "sha256-B6BlVnUX4XLT+9EpL63Ht4S8Wo84RsmY99CL+srQfpw="; 15 - 16 - meta = with lib; { 17 - description = "A git credential helper for 1Password"; 18 - homepage = "https://github.com/develerik/git-credential-1password"; 19 - changelog = "https://github.com/develerik/git-credential-1password/releases/tag/v${version}"; 20 - license = licenses.isc; 21 - maintainers = [ maintainers.ivankovnatsky ]; 22 - mainProgram = "git-credential-1password"; 23 - }; 24 - }
+1
pkgs/top-level/aliases.nix
··· 407 407 ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18 408 408 go-dependency-manager = throw "'go-dependency-manager' is unmaintained and the go community now uses 'go.mod' mostly instead"; # Added 2023-10-04 409 409 gotktrix = throw "'gotktrix' has been removed, as it was broken and unmaintained"; # Added 2023-12-06 410 + git-credential-1password = throw "'git-credential-1password' has been removed, as the upstream project is deleted."; # Added 2024-05-20 410 411 git-subset = throw "'git-subset' has been removed in favor of 'git-filter-repo'"; # Added 2023-01-13 411 412 412 413 gitAndTools = self // {
-2
pkgs/top-level/all-packages.nix
··· 2332 2332 2333 2333 git-crecord = callPackage ../applications/version-management/git-crecord { }; 2334 2334 2335 - git-credential-1password = callPackage ../applications/version-management/git-credential-1password { }; 2336 - 2337 2335 git-credential-keepassxc = darwin.apple_sdk_11_0.callPackage ../applications/version-management/git-credential-keepassxc { 2338 2336 inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation; 2339 2337 };