diff options
author | lassulus <lassulus@lassul.us> | 2021-01-28 18:07:02 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-01-28 18:07:02 +0100 |
commit | 10a397b299698f94561115e8239ed0cd8877c0fe (patch) | |
tree | 5a58fe88ab8551763818a400f6ebbbd7c69c56ea /makefu/5pkgs/office-radio | |
parent | 549f3fd553155412f04870a31849b29776a63d59 (diff) | |
parent | 0ea65cef9aa2f936f357c624fc53a393f79d8fcc (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/5pkgs/office-radio')
-rw-r--r-- | makefu/5pkgs/office-radio/default.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/makefu/5pkgs/office-radio/default.nix b/makefu/5pkgs/office-radio/default.nix new file mode 100644 index 000000000..2eacb9e23 --- /dev/null +++ b/makefu/5pkgs/office-radio/default.nix @@ -0,0 +1,23 @@ +{ lib, pkgs, fetchFromGitHub, ... }: + +with pkgs.python3Packages;buildPythonPackage rec { + name = "office-radio-${version}"; + version = "0.2.3.4"; + propagatedBuildInputs = [ + flask + psutil + mpd2 + requests + ]; + src = fetchFromGitHub { + owner = "makefu"; + repo = "office-radio"; + rev = "601c650"; + sha256 = "06zf0sjm4zlnbjlmiajbz1klhz1maj1ww5vah2abcvk1vx0p0hn7"; + }; + meta = { + homepage = https://github.com/makefu/office-radio; + description = "manage virtual office radio"; + license = lib.licenses.asl20; + }; +} |