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