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
36 lines
837 B
Nix
36 lines
837 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
nix-update-script,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "inori";
|
|
version = "0.2.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "eshrh";
|
|
repo = "inori";
|
|
tag = "v${version}";
|
|
hash = "sha256-w+UsG4CHdug6TITJLjhHsQeAhHenzDFnZLICDT0Z1UM=";
|
|
};
|
|
|
|
cargoHash = "sha256-AvYNeWyitoi9hDqiy5hl/VM4LO8J2xmLgl0y8P4xYNA=";
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Client for the Music Player Daemon (MPD)";
|
|
homepage = "https://github.com/eshrh/inori";
|
|
changelog = "https://github.com/eshrh/inori/releases/tag/${src.tag}";
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.unix ++ lib.platforms.windows;
|
|
mainProgram = "inori";
|
|
maintainers = with lib.maintainers; [
|
|
stephen-huan
|
|
esrh
|
|
];
|
|
};
|
|
}
|