build-bazel-package: added rm of extra local folders for toolchain configuration...
[NixPkgs.git] / pkgs / by-name / ro / robin-map / package.nix
blob0951f3f76a7dd23558998958e126eb324aeb09e1
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "robin-map";
10   version = "1.3.0";
12   src = fetchFromGitHub {
13     owner = "Tessil";
14     repo = pname;
15     tag = "v${version}";
16     hash = "sha256-dspOWp/8oNR0p5XRnqO7WtPcCx54/y8m1cDho4UBYyc=";
17   };
19   nativeBuildInputs = [
20     cmake
21   ];
23   meta = with lib; {
24     description = "C++ implementation of a fast hash map and hash set using robin hood hashing";
25     homepage = "https://github.com/Tessil/robin-map";
26     changelog = "https://github.com/Tessil/robin-map/releases/tag/v${version}";
27     license = licenses.mit;
28     maintainers = [ ];
29     platforms = platforms.unix;
30   };