Skip to content

Instantly share code, notes, and snippets.

@adamcstephens
Created November 2, 2022 20:45
Show Gist options
  • Save adamcstephens/44b7c6546ef8f9243d95890671610c38 to your computer and use it in GitHub Desktop.
Save adamcstephens/44b7c6546ef8f9243d95890671610c38 to your computer and use it in GitHub Desktop.
diff --git a/Cargo.lock b/Cargo.lock
index 63ddf87..6176669 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -563,7 +563,7 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
name = "minidsp"
-version = "0.1.8"
+version = "0.1.9"
dependencies = [
"anyhow",
"assert_approx_eq",
@@ -606,7 +606,7 @@ dependencies = [
[[package]]
name = "minidsp-daemon"
-version = "0.1.8"
+version = "0.1.9"
dependencies = [
"anyhow",
"bytes",
@@ -641,7 +641,7 @@ dependencies = [
[[package]]
name = "minidsp-devtools"
-version = "0.1.8"
+version = "0.1.9"
dependencies = [
"Inflector",
"anyhow",
@@ -662,7 +662,7 @@ dependencies = [
[[package]]
name = "minidsp-protocol"
-version = "0.1.8"
+version = "0.1.9"
dependencies = [
"anyhow",
"bytes",
{
fetchFromGitHub,
hidapi,
libusb1,
pkg-config,
rustPlatform,
}:
rustPlatform.buildRustPackage
rec {
name = "minidsp-${version}";
version = "0.1.9";
src = fetchFromGitHub {
owner = "mrene";
repo = "minidsp-rs";
rev = "v${version}";
sha256 = "sha256-aW9EYisJ7KYM9xyJKcMNpuj8k1uBUZFtFgvz3N7uUNg=";
};
cargoPatches = [./lockfile.patch];
cargoSha256 = "sha256-cSs0Br8mLjPaDE9C30/Umpxh1apYFwu+Wzszc0ICpWk=";
buildInputs = [
libusb1
hidapi
];
nativeBuildInputs = [
pkg-config
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment