about summary refs log tree commit diff
path: root/pkgs/tools/networking/xxh
diff options
context:
space:
mode:
authorPasquale <p3dimaria@hotmail.it>2021-11-23 22:32:31 +0100
committerPasquale <p3dimaria@hotmail.it>2021-11-23 22:32:31 +0100
commit424f07f328f2b696aa316da6b0302eae4152b46d (patch)
tree9fcc9e5809d9232aca9fdf2314888493180d9517 /pkgs/tools/networking/xxh
parent3f6ae186cf60a96f174f86ba0278e38728d72066 (diff)
xxh: init at 0.8.7
Diffstat (limited to 'pkgs/tools/networking/xxh')
-rw-r--r--pkgs/tools/networking/xxh/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/networking/xxh/default.nix b/pkgs/tools/networking/xxh/default.nix
new file mode 100644
index 0000000000000..99a0cc17e06d2
--- /dev/null
+++ b/pkgs/tools/networking/xxh/default.nix
@@ -0,0 +1,20 @@
+{ lib, fetchFromGitHub, buildPythonApplication, pexpect, pyyaml, openssh }:
+buildPythonApplication rec{
+  pname = "xxh";
+  version = "0.8.7";
+  src = fetchFromGitHub {
+    owner = pname;
+    repo = pname;
+    rev = version;
+    hash = "sha256-AKfiFBaV8DC/Z7Bc+ZpwcJor/mzYomUaQKKobKXICn4=";
+  };
+  propagatedBuildInputs = [ pexpect pyyaml openssh ];
+  meta = with lib; {
+    description = "Bring your favorite shell wherever you go through the ssh";
+    homepage = "https://github.com/xxh/xxh";
+    license = licenses.bsd2;
+    maintainers = [ maintainers.pasqui23 ];
+    platforms = platforms.all;
+  };
+
+}