summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-01-22 23:59:32 +0100
committermakefu <github@syntax-fehler.de>2021-01-22 23:59:32 +0100
commit6c11cfd768434c24c81719b1282191775fbd6e31 (patch)
tree517e1bbdf418f285fe9ac359bb7f96ac5f7d43b3 /makefu
parent96b5248e8514fbbf847d2a5c36dcfb047dd393cb (diff)
ma pkgs.office-radio: init
Diffstat (limited to 'makefu')
-rw-r--r--makefu/5pkgs/office-radio/default.nix23
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 00000000..2eacb9e2
--- /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;
+ };
+}