From a37d5183204a2587780691b52955a31487a17753 Mon Sep 17 00:00:00 2001 From: pasqui23 Date: Thu, 25 Nov 2021 16:57:45 +0000 Subject: [PATCH] xxh: formatting Co-authored-by: Sandro --- pkgs/tools/networking/xxh/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/networking/xxh/default.nix b/pkgs/tools/networking/xxh/default.nix index c6a7769fd0b8..3cc862cb48ed 100644 --- a/pkgs/tools/networking/xxh/default.nix +++ b/pkgs/tools/networking/xxh/default.nix @@ -1,14 +1,18 @@ { 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";