robin-map: init at 0.6.1

This commit is contained in:
Jan Tojnar 2019-05-30 02:12:32 +02:00
parent eccb90a2d9
commit 4a40504be4
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "robin-map";
version = "0.6.1";
src = fetchFromGitHub {
owner = "Tessil";
repo = pname;
rev = "v${version}";
sha256 = "0blvvbr14f0drbd6dp0cs8x4ng3ppb5i72dmhk43ylg6yjgh4fhq";
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
homepage = https://github.com/Tessil/robin-map;
description = "C++ implementation of a fast hash map and hash set using robin hood hashing";
license = licenses.mit;
maintainers = with maintainers; [ goibhniu jtojnar ];
platforms = platforms.unix;
};
}

View File

@ -23525,6 +23525,8 @@ in
redis-desktop-manager = libsForQt5.callPackage ../applications/misc/redis-desktop-manager { };
robin-map = callPackage ../development/libraries/robin-map { };
robo3t = callPackage ../applications/misc/robo3t { };
rucksack = callPackage ../development/tools/rucksack { };