inori: init at 0.2.2 (#371762)

This commit is contained in:
Donovan Glover
2025-01-11 19:31:01 +00:00
committed by GitHub
2 changed files with 42 additions and 0 deletions
+7
View File
@@ -7024,6 +7024,13 @@
githubId = 2544204;
name = "Erik Skytthe";
};
esrh = {
name = "Eshan Ramesh";
email = "esrh@esrh.me";
github = "eshrh";
githubId = 16175276;
keys = [ { fingerprint = "E4CE B0F0 B2EC 09A3 9678 F294 CC7A 7E3C 6CF3 1343"; } ];
};
ethancedwards8 = {
email = "ethan@ethancedwards.com";
github = "ethancedwards8";
+35
View File
@@ -0,0 +1,35 @@
{
lib,
fetchFromGitHub,
rustPlatform,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "inori";
version = "0.2.2";
src = fetchFromGitHub {
owner = "eshrh";
repo = "inori";
tag = "v${version}";
hash = "sha256-yd1kIlPepVbeTEFzjxTDWEh8o4m6dh/ya9GitqYHHT8=";
};
cargoHash = "sha256-mmzJXIl0wfcyEaYc2wZfA22ZEbTQXG5LVqxEQ4+x76M=";
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
];
};
}