23 lines
436 B
Nix
23 lines
436 B
Nix
{ lib, stdenv, python3, hid }:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "openphone";
|
|
version = "0.1";
|
|
src = /home/christian/projects/OpenPhone2;
|
|
|
|
propagatedBuildInputs = [
|
|
hid
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://ulrich.earth/code/OpenPhone";
|
|
description = "Open source desk telephone";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ royneary ];
|
|
};
|
|
|
|
doCheck = false;
|
|
}
|