tone: clean up

This commit is contained in:
Jordan Williams
2024-12-13 14:50:34 -06:00
parent 4700e0ac57
commit b4bd73ceed
+7 -6
View File
@@ -12,9 +12,9 @@ buildDotnetModule rec {
src = fetchFromGitHub {
owner = "sandreas";
repo = pname;
repo = "tone";
rev = "v${version}";
sha256 = "sha256-HhXyOPoDtraT7ef0kpE7SCQbvGFLrTddzS6Kdu0LxW4=";
hash = "sha256-HhXyOPoDtraT7ef0kpE7SCQbvGFLrTddzS6Kdu0LxW4=";
};
projectFile = "tone/tone.csproj";
@@ -26,14 +26,15 @@ buildDotnetModule rec {
];
dotnet-sdk = dotnetCorePackages.sdk_6_0;
dotnet-runtime = dotnetCorePackages.sdk_6_0;
runtimeDeps = [ ffmpeg-full ];
meta = with lib; {
meta = {
homepage = "https://github.com/sandreas/tone";
description = "Cross platform utility to dump and modify audio metadata for a wide variety of formats";
license = licenses.asl20;
maintainers = [ maintainers.jvanbruegge ];
platforms = platforms.linux;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jvanbruegge ];
platforms = lib.platforms.linux;
mainProgram = "tone";
};
}