nixpkgs/pkgs/tools/networking/xxh/default.nix

24 lines
579 B
Nix
Raw Normal View History

2021-11-23 21:32:31 +00:00
{ lib, fetchFromGitHub, buildPythonApplication, pexpect, pyyaml, openssh }:
2021-11-23 21:32:31 +00:00
buildPythonApplication rec{
pname = "xxh";
version = "0.8.7";
2021-11-23 21:32:31 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
hash = "sha256-AKfiFBaV8DC/Z7Bc+ZpwcJor/mzYomUaQKKobKXICn4=";
};
2021-11-23 21:32:31 +00:00
propagatedBuildInputs = [ pexpect pyyaml openssh ];
2021-11-23 21:32:31 +00:00
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 ];
};
}