Skip to content

Commit

Permalink
Fix nix-build failing with newer nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
arximboldi committed Oct 19, 2021
1 parent 2eea220 commit a16be97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ stdenv.mkDerivation rec {
src = fetchGit ./.;
nativeBuildInputs = [ cmake ];
dontBuild = true;
meta = with stdenv.lib; {
meta = {
homepage = "https://github.com/arximboldi/immer";
description = "Postmodern immutable data structures for C++";
license = licenses.boost;
license = lib.licenses.boost;
};
}

0 comments on commit a16be97

Please sign in to comment.