Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
773 B
Nix
30 lines
773 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "apt-swarm";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kpcyrd";
|
|
repo = "apt-swarm";
|
|
tag = "v${version}";
|
|
hash = "sha256-zb0X6vIRKeI5Ysc88sTCJBlr9r8hrsTq5YR7YCg1L30=";
|
|
};
|
|
|
|
cargoHash = "sha256-PELTEzhsFa1nl7iqrjnuXEI0U7L8rL9XW9XqQ04rz/s=";
|
|
|
|
meta = {
|
|
description = "Experimental p2p gossip network for OpenPGP signature transparency";
|
|
homepage = "https://github.com/kpcyrd/apt-swarm";
|
|
changelog = "https://github.com/kpcyrd/apt-swarm/releases/tag/v${version}";
|
|
mainProgram = "apt-swarm";
|
|
license = with lib.licenses; [ gpl3Plus ];
|
|
maintainers = with lib.maintainers; [ kpcyrd ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|