Closed dogatkeyboard closed 2 years ago
Looks like changing the project0.nix
file to remove stdenv
and use lib
instead fixes this:
{ mkDerivation, base, lib }:
mkDerivation {
pname = "project0";
version = "1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base ];
license = lib.licenses.bsd3;
}
Having trouble getting started with this tutorial. When I try to build project0, I experience the following error:
Any insights on what I might be doing wrong on my end? My environment is: