seth 2025-01-14 20:07:35 +00:00 committed by Seth Flynn
parent c1198e1ada
commit a14ef5f53f
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -1,23 +1,29 @@
{
lib,
fetchFromGitHub,
gpgme,
nix-update-script,
pkg-config,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "passepartui";
version = "0.1.5";
version = "0.1.7";
src = fetchFromGitHub {
owner = "kardwen";
repo = "passepartui";
tag = "v${version}";
hash = "sha256-/rYdOurPlpGKCMAXTAhoWRn4NU3usPpJmef3f8V8EQA=";
hash = "sha256-LV/2+oSGVBRrWaHP/u1PcCb1T6Nduna/lusakCZW+PM=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-XcPc1TAADShoLXPvwVXex9wBwq4kJ3/5EZ5spF451aQ=";
cargoHash = "sha256-JR5zOhYogBa+6xYYyc36n/x7f5JW1mnNi2cK5i9QMSM=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gpgme ];
passthru = {
updateScript = nix-update-script { };