1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-06 23:31:34 +00:00

pay-respects: 0.6.10 -> 0.6.11 (#375054)

This commit is contained in:
Austin Horstman 2025-01-22 16:47:24 -06:00 committed by GitHub
commit 95323bd83f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 3 deletions
maintainers
pkgs/by-name/pa/pay-respects

View file

@ -962,6 +962,12 @@
name = "Alex James";
keys = [ { fingerprint = "F354 FFAB EA89 A49D 33ED 2590 4729 B829 AC5F CC72"; } ];
};
ALameLlama = {
email = "NicholasACiechanowski@gmail.com";
name = "Nicholas Ciechanowski";
github = "ALameLlama";
githubId = 55490546;
};
alanpearce = {
email = "alan@alanpearce.eu";
github = "alanpearce";

View file

@ -4,20 +4,21 @@
rustPlatform,
pkg-config,
openssl,
curl,
}:
rustPlatform.buildRustPackage rec {
pname = "pay-respects";
version = "0.6.10";
version = "0.6.11";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "iff";
repo = "pay-respects";
rev = "v${version}";
hash = "sha256-cyd0MF5pxa3FhSUmjNtiIwAWrE0/rqtOm8dJxqdwPSk=";
hash = "sha256-4m8/sp6r2Xb2SsNcatMv0+mWHBx+XKD0LEzrEwuWIEA=";
};
cargoHash = "sha256-7j6rRCMazMFbPnzt4/0Lz1BDJP3xtq1ycb+41f2qhe0=";
cargoHash = "sha256-obuMixkXqWUuZFqs3mJyMpHx4RY70ZpE3H9GzqFmt6k=";
nativeBuildInputs = [
pkg-config
@ -25,6 +26,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = [
openssl
curl
];
meta = {
@ -34,6 +36,7 @@ rustPlatform.buildRustPackage rec {
maintainers = with lib.maintainers; [
sigmasquadron
bloxx12
ALameLlama
];
mainProgram = "pay-respects";
};