wrtag: init at 0.15.0 (#429725)

This commit is contained in:
Aleksana
2025-08-01 16:39:25 +08:00
committed by GitHub
+40
View File
@@ -0,0 +1,40 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
testers,
}:
buildGoModule (finalAttrs: {
pname = "wrtag";
version = "0.15.0";
src = fetchFromGitHub {
owner = "sentriz";
repo = "wrtag";
tag = "v${finalAttrs.version}";
hash = "sha256-ev/dfj6WpBZzOaN1RXHcEmkd2pVLX92J/VhoMXYGPPw=";
};
vendorHash = "sha256-es6pfWw3NqKKV9jfsgQhEU6IbWeptqbP0yvum/BxOuI=";
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
command = "wrtag --version";
};
};
meta = {
description = "Fast automated music tagging and organization based on MusicBrainz";
longDescription = ''
wrtag is a music tagging and organisation tool similar to Beets and MusicBrainz Picard.
Written in go, it aims to be simpler, more composable and faster.
'';
homepage = "https://github.com/sentriz/wrtag";
license = lib.licenses.gpl3Only;
mainProgram = "wrtag";
maintainers = with lib.maintainers; [ quantenzitrone ];
};
})