From a16be97632ef9e725b4e4f1b37bf30c796e6cebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Pedro=20Bol=C3=ADvar=20Puente?= Date: Tue, 19 Oct 2021 12:53:45 +0200 Subject: [PATCH] Fix nix-build failing with newer nixpkgs --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 2eb7dbb1..1a6f0296 100644 --- a/default.nix +++ b/default.nix @@ -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; }; }