robin-map: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-07 23:16:03 +01:00 committed by GitHub
parent f85087fdcb
commit 2f9b6bef94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
@ -10,15 +11,18 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "Tessil";
repo = pname;
rev = "v${version}";
sha256 = "sha256-axVMJHTnGW2c4kGcYhEEAvKbVKYA2oxiYfwjiz7xh6Q=";
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;