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

27 lines
643 B
Nix
Raw Normal View History

2022-01-01 21:16:13 +00:00
{ lib, fetchFromGitHub, buildPythonApplication, pexpect, pyyaml, openssh, nixosTests }:
2021-11-23 21:32:31 +00:00
buildPythonApplication rec{
pname = "xxh";
2022-01-01 20:49:11 +00:00
version = "0.8.8";
2021-11-23 21:32:31 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2022-01-01 20:49:11 +00:00
hash = "sha256-TzC8GTDmnYN56Rp5DyZxh+yGrkgWr6Xt86a/jyB3j5k=";
2021-11-23 21:32:31 +00:00
};
2021-11-23 21:32:31 +00:00
propagatedBuildInputs = [ pexpect pyyaml openssh ];
2022-01-01 21:16:13 +00:00
passthru.tests = {
inherit (nixosTests) xxh;
};
2021-11-23 21:32:31 +00:00
meta = with lib; {
description = "Bring your favorite shell wherever you go through ssh";
2021-11-23 21:32:31 +00:00
homepage = "https://github.com/xxh/xxh";
license = licenses.bsd2;
maintainers = [ maintainers.pasqui23 ];
};
}