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
368 B
Nix
Raw Normal View History

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