feat(third_party): Add Google's farmhash library

This commit is contained in:
Vincent Ambo 2020-05-08 18:39:43 +01:00
parent 12387550e3
commit 28a36a2b70

13
third_party/farmhash/default.nix vendored Normal file
View 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";
};
}