Skip to content

Commit

Permalink
Merge pull request #191 from arximboldi/fix-nix-build
Browse files Browse the repository at this point in the history
Fix nix-build failing with newer nixpkgs
  • Loading branch information
arximboldi authored Oct 20, 2021
2 parents 2eea220 + a16be97 commit b58466e
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 b58466e

Please sign in to comment.