Merge pull request #300578 from colemickens/colemickens/tplay-0.5.0

tplay: 0.4.0 -> 0.5.0
This commit is contained in:
Peder Bergebakken Sundt 2024-04-22 22:41:27 +02:00 committed by GitHub
commit d7d8ffeaa2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 18 deletions

View File

@ -1,13 +0,0 @@
diff --git a/Cargo.lock b/Cargo.lock
index 0eb70e4..8d81ba0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2069,7 +2069,7 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tplay"
-version = "0.4.4"
+version = "0.4.5"
dependencies = [
"clap",
"crossbeam-channel",

View File

@ -11,17 +11,16 @@
}:
rustPlatform.buildRustPackage rec {
pname = "tplay";
version = "0.4.5";
version = "0.5.0";
src = fetchFromGitHub {
owner = "maxcurzi";
repo = "tplay";
rev = "v${version}";
hash = "sha256-qt5I5rel88NWJZ6dYLCp063PfVmGTzkUUKgF3JkhLQk=";
hash = "sha256-/3ui0VOxf+kYfb0JQXPVbjAyXPph2LOg2xB0DGmAbwc=";
};
cargoHash = "sha256-0kHh7Wb9Dp+t2G9/Kz/3K43bQdFCl+q2Vc3W32koc2I=";
cargoPatches = [ ./cargo.diff ];
cargoHash = "sha256-zRkIEH37pvxHUbnfg25GW1Z7od9XMkRmP2Qvs64uUjg=";
checkFlags = [
# requires network access
"--skip=pipeline::image_pipeline::tests::test_process"
@ -46,6 +45,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/maxcurzi/tplay";
platforms = lib.platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ demine ];
maintainers = with lib.maintainers; [ demine colemickens ];
};
}