nixpkgs/pkgs/tools/audio/yabridgectl/default.nix

27 lines
852 B
Nix
Raw Normal View History

2021-01-09 07:15:57 +00:00
{ lib, rustPlatform, yabridge }:
rustPlatform.buildRustPackage rec {
pname = "yabridgectl";
version = yabridge.version;
src = yabridge.src;
sourceRoot = "source/tools/yabridgectl";
2021-03-10 14:14:11 +00:00
cargoHash = "sha256-mSp/IH7ZB7YSOBCFwNtHLYDz7CvWo2sO9VuPdqpl/u0=";
2021-01-09 07:15:57 +00:00
patches = [
# By default, yabridgectl locates libyabridge.so by using
2021-03-10 14:14:11 +00:00
# hard coded distro specific lib paths. This patch replaces those
# hard coded paths with lib paths from NIX_PROFILES.
2021-01-09 07:15:57 +00:00
./libyabridge-from-nix-profiles.patch
];
patchFlags = [ "-p3" ];
meta = with lib; {
description = "A small, optional utility to help set up and update yabridge for several directories at once";
homepage = "https://github.com/robbert-vdh/yabridge/tree/master/tools/yabridgectl";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ metadark ];
};
}