mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
30 lines
788 B
Nix
30 lines
788 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, alsa-lib
|
|
, speexdsp
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "bark";
|
|
version = "unstable-2023-08-22";
|
|
src = fetchFromGitHub {
|
|
owner = "haileys";
|
|
repo = "bark";
|
|
rev = "2586b9fb58b496f8ef06f516c9cd3aace77521f7";
|
|
hash = "sha256-sGroae6uJhB9UIpFmvt520Zs9k0ir7H8pGkhKJmVWek=";
|
|
};
|
|
cargoHash = "sha256-OjlVn4fvKPm3UfqhKkv7cDuvK4mcLcQXPNPK+WScrMc=";
|
|
buildInputs = [ alsa-lib speexdsp ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = {
|
|
description = "Live sync audio streaming for local networks";
|
|
homepage = "https://github.com/haileys/bark";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ samw ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "bark";
|
|
};
|
|
}
|
|
|