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