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
29 lines
747 B
Nix
29 lines
747 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "pixelpwnr";
|
|
version = "0.1.0-unstable-2024-12-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "timvisee";
|
|
repo = "pixelpwnr";
|
|
rev = "0019afb86bbb3c0d29f9a7bacfd7ab0049506cee";
|
|
hash = "sha256-VwQndSgvuD/bktA6REdQVIuVPFnicgVoYNU1wPZZzb0=";
|
|
};
|
|
|
|
cargoHash = "sha256-jO9vyfIGVXW0ZA4ET4YnM8oTlWHpSIMg35z7B3anbAA=";
|
|
|
|
meta = {
|
|
description = "Insanely fast pixelflut client for images and animations written in Rust";
|
|
homepage = "https://github.com/timvisee/pixelpwnr";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = [ lib.maintainers.ixhby ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "pixelpwnr";
|
|
};
|
|
})
|