Unverified Commit 80e2bf73 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

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

parents c4a5566b 0805e5aa
Loading
Loading
Loading
Loading
+17 −4
Original line number Diff line number Diff line
{
  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";