forked from mirrors/nixpkgs
xxh: init at 0.8.7
This commit is contained in:
parent
3f6ae186cf
commit
424f07f328
20
pkgs/tools/networking/xxh/default.nix
Normal file
20
pkgs/tools/networking/xxh/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ 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";
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.pasqui23 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
||||
}
|
|
@ -10165,6 +10165,8 @@ in {
|
|||
inherit (pkgs.xorg) xorgserver;
|
||||
};
|
||||
|
||||
xxh = callPackage ../tools/networking/xxh { };
|
||||
|
||||
xxhash = callPackage ../development/python-modules/xxhash { };
|
||||
|
||||
yahooweather = callPackage ../development/python-modules/yahooweather { };
|
||||
|
|
Loading…
Reference in a new issue