Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 30 lines 741 B view raw
1{ lib 2, stdenv 3, fetchFromGitHub 4, cmake 5}: 6 7stdenv.mkDerivation rec { 8 pname = "immer"; 9 version = "0.8.0"; 10 11 src = fetchFromGitHub { 12 owner = "arximboldi"; 13 repo = "immer"; 14 rev = "v${version}"; 15 hash = "sha256-R0C6hN50eyFSv10L/Q0tRdnUrRvze+eRXPrlAQsddYY="; 16 }; 17 18 nativeBuildInputs = [ cmake ]; 19 dontBuild = true; 20 dontUseCmakeBuildDir = true; 21 22 meta = with lib; { 23 description = "Postmodern immutable and persistent data structures for C++ value semantics at scale"; 24 homepage = "https://sinusoid.es/immer"; 25 changelog = "https://github.com/arximboldi/immer/releases/tag/v${version}"; 26 license = licenses.boost; 27 maintainers = with maintainers; [ sifmelcara ]; 28 platforms = platforms.all; 29 }; 30}