mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-10 07:13:38 +00:00
Co-authored-by: Gaétan Lepage <gaetan@glepage.com> Co-authored-by: Benjamin Saunders <ben.e.saunders@gmail.com>
51 lines
958 B
Nix
51 lines
958 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
audioop-lts,
|
|
lxmf,
|
|
numpy,
|
|
pycodec2,
|
|
rns,
|
|
soundcard,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "lxst";
|
|
version = "0.4.4";
|
|
pyproject = true;
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markqvist";
|
|
repo = "lxst";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-MAJ1n6EUZ6FmIfKKuM2ppbTVrWkxpjC5KIICo5stc+k=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
audioop-lts
|
|
pycodec2
|
|
numpy
|
|
rns
|
|
lxmf
|
|
soundcard
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/markqvist/LXST/releases/tag/${finalAttrs.version}";
|
|
description = "Simple and flexible real-time streaming format and delivery protocol for Reticulum";
|
|
homepage = "https://github.com/markqvist/LXST";
|
|
license = lib.licenses.cc-by-nc-nd-40;
|
|
maintainers = with lib.maintainers; [
|
|
drupol
|
|
];
|
|
mainProgram = "rnphone";
|
|
};
|
|
})
|