mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #251208 from wlcx/init-bark
bark: init at unstable-2023-08-22
This commit is contained in:
commit
b3f349d65d
29
pkgs/tools/audio/bark/default.nix
Normal file
29
pkgs/tools/audio/bark/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
||||
|
@ -3330,6 +3330,8 @@ with pkgs;
|
||||
|
||||
azure-storage-azcopy = callPackage ../development/tools/azcopy { };
|
||||
|
||||
bark = callPackage ../tools/audio/bark { };
|
||||
|
||||
bashblog = callPackage ../tools/text/bashblog { };
|
||||
|
||||
berglas = callPackage ../tools/admin/berglas { };
|
||||
|
Loading…
Reference in New Issue
Block a user