packages feed

cabal2nix-2.9.3: test/golden-test-cases/lazy-csv.nix.golden

{ 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;
}