mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
stdenv,
|
|
libusb1,
|
|
AppKit,
|
|
IOKit,
|
|
pkg-config,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "minidsp";
|
|
version = "0.1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mrene";
|
|
repo = "minidsp-rs";
|
|
# v0.1.9 tag is out of date, cargo lock fixed in next commit on main
|
|
rev = "b03a95a05917f20b9c3153c03e4e99dd943d9f6f";
|
|
hash = "sha256-uZBrX3VCCpr7AY82PgR596mncL5wWDK7bpx2m/jCJBE=";
|
|
};
|
|
|
|
cargoHash = "sha256-0PyojyimxnwEtHA98Npf4eHvycjuXdPrrIFilVuEnQk=";
|
|
|
|
cargoBuildFlags = ["-p minidsp -p minidsp-daemon"];
|
|
|
|
buildInputs =
|
|
lib.optionals stdenv.isLinux [libusb1]
|
|
++ lib.optionals stdenv.isDarwin [AppKit IOKit];
|
|
|
|
nativeBuildInputs = lib.optionals stdenv.isLinux [pkg-config];
|
|
|
|
meta = with lib; {
|
|
description = "A control interface for some MiniDSP products";
|
|
homepage = "https://github.com/mrene/minidsp-rs";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = [maintainers.adamcstephens maintainers.mrene];
|
|
};
|
|
}
|