This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
74 lines
2.0 KiB
Nix
74 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDotnetModule,
|
|
dotnetCorePackages,
|
|
libsecret,
|
|
git,
|
|
git-credential-manager,
|
|
gnupg,
|
|
pass,
|
|
testers,
|
|
withLibsecretSupport ? true,
|
|
withGpgSupport ? true,
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "git-credential-manager";
|
|
version = "2.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "git-ecosystem";
|
|
repo = "git-credential-manager";
|
|
rev = "v${version}";
|
|
hash = "sha256-fzcGAcKOAEnBiAEYYyxKJ71xnixb5cz7FzR28/cKIFg=";
|
|
};
|
|
|
|
projectFile = "src/shared/Git-Credential-Manager/Git-Credential-Manager.csproj";
|
|
nugetDeps = ./deps.json;
|
|
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
|
dotnet-runtime = dotnetCorePackages.runtime_8_0;
|
|
dotnetInstallFlags = [
|
|
"--framework"
|
|
"net8.0"
|
|
];
|
|
executables = [ "git-credential-manager" ];
|
|
|
|
runtimeDeps = lib.optional withLibsecretSupport libsecret;
|
|
makeWrapperArgs = [
|
|
"--prefix PATH : ${
|
|
lib.makeBinPath (
|
|
[ git ]
|
|
++ lib.optionals withGpgSupport [
|
|
gnupg
|
|
pass
|
|
]
|
|
)
|
|
}"
|
|
"--inherit-argv0"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = ./update.sh;
|
|
tests.version = testers.testVersion {
|
|
package = git-credential-manager;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Secure, cross-platform Git credential storage with authentication to GitHub, Azure Repos, and other popular Git hosting services";
|
|
homepage = "https://github.com/git-ecosystem/git-credential-manager";
|
|
license = with licenses; [ mit ];
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ _999eagle ];
|
|
longDescription = ''
|
|
git-credential-manager is a secure, cross-platform Git credential storage with authentication to GitHub, Azure Repos, and other popular Git hosting services.
|
|
|
|
> requires sandbox to be disabled on MacOS, so that
|
|
.NET can find `/usr/bin/codesign` to sign the compiled binary.
|
|
This problem is common to all .NET packages on MacOS with Nix.
|
|
'';
|
|
mainProgram = "git-credential-manager";
|
|
};
|
|
}
|