blob: 2eb7dbb1f80bf6e2dd1319f0b37c6b2766a5bceb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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;
};
}
|