diff options
author | makefu <github@syntax-fehler.de> | 2020-03-13 10:40:11 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2020-03-13 10:40:11 +0100 |
commit | a72d8c58747de4b554b6f9643ba7e6db9249cf8a (patch) | |
tree | f4c8b24aeb8a1aa25342c32339d0fb0b9480a1d9 /makefu/5pkgs/custom/liveproxy/default.nix | |
parent | a2d343e8070097de9c62f86dfd8cca883f55cd53 (diff) |
ma pkgs: add cc-tool,liveproxy
Diffstat (limited to 'makefu/5pkgs/custom/liveproxy/default.nix')
-rw-r--r-- | makefu/5pkgs/custom/liveproxy/default.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/makefu/5pkgs/custom/liveproxy/default.nix b/makefu/5pkgs/custom/liveproxy/default.nix new file mode 100644 index 000000000..195879c89 --- /dev/null +++ b/makefu/5pkgs/custom/liveproxy/default.nix @@ -0,0 +1,30 @@ +{ lib +, buildPythonPackage +, fetchPypi +, streamlink +}: + +buildPythonPackage rec { + pname = "liveproxy"; + version = "0.3.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "70ba2f7b57cdf19c6d971a434ed47cccb5fdfe4621baa76a3f6221e75b7f2729"; + }; + + # # Package conditions to handle + # # might have to sed setup.py and egg.info in patchPhase + # # sed -i "s/<package>.../<package>/" + # streamlink (>=1.1.1) + propagatedBuildInputs = [ + streamlink + ]; + + meta = with lib; { + description = "LiveProxy is a local Proxyserver between Streamlink and an URL"; + homepage = https://github.com/back-to/liveproxy; + license = licenses.BSD 2-Clause "Simplified" License; + # maintainers = [ maintainers. ]; + }; +} |