2022-01-01 22:16:13 +01:00
|
|
|
{ lib, fetchFromGitHub, buildPythonApplication, pexpect, pyyaml, openssh, nixosTests }:
|
2021-11-25 17:57:45 +01:00
|
|
|
|
2021-11-23 22:32:31 +01:00
|
|
|
buildPythonApplication rec{
|
|
|
|
pname = "xxh";
|
2022-02-14 11:36:14 +01:00
|
|
|
version = "0.8.9";
|
2021-11-25 17:57:45 +01:00
|
|
|
|
2021-11-23 22:32:31 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-02-14 11:36:14 +01:00
|
|
|
hash = "sha256-Uo7xFwE9e5MFWDlNWq15kg+4xf/hF4WGUNTpTK+rgVg=";
|
2021-11-23 22:32:31 +01:00
|
|
|
};
|
2021-11-25 17:57:45 +01:00
|
|
|
|
2021-11-23 22:32:31 +01:00
|
|
|
propagatedBuildInputs = [ pexpect pyyaml openssh ];
|
2021-11-25 17:57:45 +01:00
|
|
|
|
2022-01-01 22:16:13 +01:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) xxh;
|
|
|
|
};
|
|
|
|
|
2021-11-23 22:32:31 +01:00
|
|
|
meta = with lib; {
|
2021-11-28 15:41:30 +01:00
|
|
|
description = "Bring your favorite shell wherever you go through ssh";
|
2021-11-23 22:32:31 +01:00
|
|
|
homepage = "https://github.com/xxh/xxh";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = [ maintainers.pasqui23 ];
|
|
|
|
};
|
|
|
|
}
|