Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport release-24.11] tone: 0.1.5 -> 0.2.3 #365959

Merged
merged 8 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tone: clean up
(cherry picked from commit b4bd73c)
  • Loading branch information
jwillikers authored and github-actions[bot] committed Dec 17, 2024
commit 67688369cc4e29ff1d78e76d6c90a34dd5c77bf5
13 changes: 7 additions & 6 deletions pkgs/by-name/to/tone/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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";
};
}