tvl-depot/third_party/immer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
361 B
Nix
Raw Normal View History

with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "immer-git";
version = "git";
src = fetchGit ./.;
nativeBuildInputs = [ cmake ];
dontBuild = true;
meta = with stdenv.lib; {
homepage = "https://github.com/arximboldi/immer";
description = "Postmodern immutable data structures for C++";
license = licenses.boost;
};
}