depot/third_party/nixpkgs/pkgs/tools/networking/xxh/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

26 lines
643 B
Nix

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