forked from mirrors/nixpkgs
Merge pull request #209524 from r-ryantm/auto-update/robin-map
robin-map: 1.0.1 -> 1.2.1
This commit is contained in:
commit
4f353d2f01
|
@ -1,24 +1,28 @@
|
|||
{ lib, stdenv
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "robin-map";
|
||||
version = "1.0.1";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Tessil";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-4OW7PHow+O7R4t5+6iPV3E+1+6XPhqxrL1LQZitmCzQ=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-axVMJHTnGW2c4kGcYhEEAvKbVKYA2oxiYfwjiz7xh6Q=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Tessil/robin-map";
|
||||
description = "C++ implementation of a fast hash map and hash set using robin hood hashing";
|
||||
homepage = "https://github.com/Tessil/robin-map";
|
||||
changelog = "https://github.com/Tessil/robin-map/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
platforms = platforms.unix;
|
||||
|
|
Loading…
Reference in a new issue