This commit is contained in:
atagen 2022-08-27 20:40:32 +10:00
parent 244804f743
commit 57fdfa8213
2 changed files with 1 additions and 1 deletions

View file

@ -1,23 +0,0 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "git-credential-keepassxc";
version = "0.10.0";
src = fetchFromGitHub {
owner = "frederick888";
repo = pname;
rev = "v${version}";
sha256 = "sha256-BmjGxDqX8j/69Uo8jjWtcJcxNHxI7S5+eZQMApdybq0=";
};
cargoSha256 = "sha256-gXW08plJRE1Q6W+Dc2y+gu2R+KBRs3fBG1umdawDduA=";
meta = with lib; {
description = "";
homepage = "https://github.com/frederick888/git-credential-keepassxc";
license = licenses.gpl3Only;
maintainers = [ "all me baby" ];
};
}