mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
robin-map: init at 0.6.1
This commit is contained in:
parent
eccb90a2d9
commit
4a40504be4
26
pkgs/development/libraries/robin-map/default.nix
Normal file
26
pkgs/development/libraries/robin-map/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user