{ mkDerivation, base, bytestring, stdenv }: mkDerivation { pname = "lazy-csv"; version = "0.5.1"; sha256 = "deadbeef"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring ]; executableHaskellDepends = [ base bytestring ]; homepage = "http://code.haskell.org/lazy-csv"; description = "Efficient lazy parsers for CSV (comma-separated values)"; license = stdenv.lib.licenses.bsd3; }