forked from mirrors/nixpkgs
24 lines
666 B
Nix
24 lines
666 B
Nix
{ lib, rustPlatform, yabridge }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "yabridgectl";
|
|
version = yabridge.version;
|
|
|
|
src = yabridge.src;
|
|
sourceRoot = "source/tools/yabridgectl";
|
|
cargoSha256 = "08j865n9vjnkc1g33lnzlj2nr3raj3av9cnvdqbkh65kr4zs4r9h";
|
|
|
|
patches = [
|
|
./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 ];
|
|
};
|
|
}
|