1 { lib, fetchFromGitHub, buildDotnetModule, ffmpeg-full, dotnetCorePackages }:
3 buildDotnetModule rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-HhXyOPoDtraT7ef0kpE7SCQbvGFLrTddzS6Kdu0LxW4=";
14 projectFile = "tone/tone.csproj";
15 executables = [ "tone" ];
16 nugetDeps = ./nuget-deps.nix;
18 dotnetInstallFlags = [
19 "-p:PublishSingleFile=false"
22 dotnet-sdk = dotnetCorePackages.sdk_6_0;
23 runtimeDeps = [ ffmpeg-full ];
26 homepage = "https://github.com/sandreas/tone";
27 description = "Cross platform utility to dump and modify audio metadata for a wide variety of formats";
28 license = licenses.asl20;
29 maintainers = [ maintainers.jvanbruegge ];
30 platforms = platforms.linux;