3
0
Fork 0
forked from mirrors/nixpkgs

xxh: init at 0.8.7

This commit is contained in:
Pasquale 2021-11-23 22:32:31 +01:00
parent 3f6ae186cf
commit 424f07f328
No known key found for this signature in database
GPG key ID: 13160FFB4CEB03F2
2 changed files with 22 additions and 0 deletions

View 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;
};
}

View file

@ -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 { };