From a2d343e8070097de9c62f86dfd8cca883f55cd53 Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 13 Mar 2020 10:39:32 +0100 Subject: ma pkgs.hydra-check: move to custom --- makefu/5pkgs/custom/hydra-check/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 makefu/5pkgs/custom/hydra-check/default.nix (limited to 'makefu/5pkgs/custom') diff --git a/makefu/5pkgs/custom/hydra-check/default.nix b/makefu/5pkgs/custom/hydra-check/default.nix new file mode 100644 index 000000000..512ceec9f --- /dev/null +++ b/makefu/5pkgs/custom/hydra-check/default.nix @@ -0,0 +1,19 @@ +{ docopt, requests, beautifulsoup4, fetchFromGitHub, buildPythonPackage }: + +buildPythonPackage rec { + name = "hydra-check"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "makefu"; + repo = "hydra-check"; + rev = version; + sha256 = "0359s9rvl2q23a3yddhbn6w2sd5r1f1jl6whyik7qql7blpcvyi7"; + }; + propagatedBuildInputs = [ + docopt + requests + beautifulsoup4 + ]; + doCheck = false; # no tests +} -- cgit v1.2.3 From a72d8c58747de4b554b6f9643ba7e6db9249cf8a Mon Sep 17 00:00:00 2001 From: makefu Date: Fri, 13 Mar 2020 10:40:11 +0100 Subject: ma pkgs: add cc-tool,liveproxy --- makefu/5pkgs/custom/liveproxy/default.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 makefu/5pkgs/custom/liveproxy/default.nix (limited to 'makefu/5pkgs/custom') 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/...//" + # 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. ]; + }; +} -- cgit v1.2.3 From cbd9b1923236566893f12a9ce96bec7c9f59fcda Mon Sep 17 00:00:00 2001 From: makefu Date: Thu, 19 Mar 2020 13:15:04 +0100 Subject: ma pkgs.hydra-check: 1.0.0 -> 1.1.0 --- makefu/5pkgs/custom/hydra-check/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'makefu/5pkgs/custom') diff --git a/makefu/5pkgs/custom/hydra-check/default.nix b/makefu/5pkgs/custom/hydra-check/default.nix index 512ceec9f..cfaaaab73 100644 --- a/makefu/5pkgs/custom/hydra-check/default.nix +++ b/makefu/5pkgs/custom/hydra-check/default.nix @@ -2,13 +2,13 @@ buildPythonPackage rec { name = "hydra-check"; - version = "1.0.0"; + version = "1.1.0"; src = fetchFromGitHub { - owner = "makefu"; + owner = "nix-community"; repo = "hydra-check"; rev = version; - sha256 = "0359s9rvl2q23a3yddhbn6w2sd5r1f1jl6whyik7qql7blpcvyi7"; + sha256 = "1q4n5l238lnzcms3z1ax4860inaliawqlxv7nf1wb4knl4wr26fk"; }; propagatedBuildInputs = [ docopt -- cgit v1.2.3 From f54afe0cc6357ede5f9a3ae0cd1acc58d0b66aaf Mon Sep 17 00:00:00 2001 From: makefu Date: Thu, 19 Mar 2020 15:18:20 +0100 Subject: ma pkgs.liveproxy: fix licensing --- makefu/5pkgs/custom/liveproxy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makefu/5pkgs/custom') diff --git a/makefu/5pkgs/custom/liveproxy/default.nix b/makefu/5pkgs/custom/liveproxy/default.nix index 195879c89..ba5ddee66 100644 --- a/makefu/5pkgs/custom/liveproxy/default.nix +++ b/makefu/5pkgs/custom/liveproxy/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { 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; + license = lib.licenses.bsd2; # maintainers = [ maintainers. ]; }; } -- cgit v1.2.3