2021-07-24 15:53:20 +02:00
|
|
|
{ lib, stdenv, python3, hid }:
|
2020-04-04 14:40:22 +02:00
|
|
|
|
|
|
|
with python3.pkgs;
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "openphone";
|
|
|
|
version = "0.1";
|
|
|
|
src = /home/christian/projects/OpenPhone2;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
hid
|
|
|
|
];
|
|
|
|
|
2021-07-24 15:53:20 +02:00
|
|
|
meta = with lib; {
|
2020-04-04 14:40:22 +02:00
|
|
|
homepage = "https://ulrich.earth/code/OpenPhone";
|
|
|
|
description = "Open source desk telephone";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ royneary ];
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
}
|