feat(third_party): Add Google's farmhash library
This commit is contained in:
parent
12387550e3
commit
28a36a2b70
1 changed files with 13 additions and 0 deletions
13
third_party/farmhash/default.nix
vendored
Normal file
13
third_party/farmhash/default.nix
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Google's farmhash family of hash functions
|
||||
{ pkgs, ... }:
|
||||
|
||||
pkgs.stdenv.mkDerivation {
|
||||
name = "farmhash";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "google";
|
||||
repo = "farmhash";
|
||||
rev = "0d859a811870d10f53a594927d0d0b97573ad06d";
|
||||
sha256 = "1w2583m5289hby0r91gds5yia6l8qpmzkl5b9bv58g5gacfj2h17";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue