immer: 0.8.0 -> 0.8.1; add update script (#376457)

This commit is contained in:
Arne Keller
2025-02-03 08:32:37 +01:00
committed by GitHub
+17 -4
View File
@@ -1,25 +1,38 @@
{
lib,
stdenv,
catch2,
fetchFromGitHub,
cmake,
nix-update-script,
}:
stdenv.mkDerivation rec {
pname = "immer";
version = "0.8.0";
version = "0.8.1";
src = fetchFromGitHub {
owner = "arximboldi";
repo = "immer";
rev = "v${version}";
hash = "sha256-R0C6hN50eyFSv10L/Q0tRdnUrRvze+eRXPrlAQsddYY=";
tag = "v${version}";
hash = "sha256-Tyj2mNyLhrcFNQEn4xHC8Gz7/jtA4Dnkjtk8AAXJEw8=";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [
cmake
];
buildInputs = [
catch2
];
strictDeps = true;
dontBuild = true;
dontUseCmakeBuildDir = true;
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Postmodern immutable and persistent data structures for C++ value semantics at scale";
homepage = "https://sinusoid.es/immer";