packages feed

cabal2nix-2.16.0: test/golden-test-cases/indentation-parsec.nix.golden

{ mkDerivation, base, indentation-core, lib, mtl, parsec, tasty
, tasty-hunit
}:
mkDerivation {
  pname = "indentation-parsec";
  version = "0.0.0.1";
  sha256 = "deadbeef";
  libraryHaskellDepends = [ base indentation-core mtl parsec ];
  testHaskellDepends = [ base parsec tasty tasty-hunit ];
  homepage = "https://bitbucket.org/adamsmd/indentation";
  description = "Indentation sensitive parsing combinators for Parsec";
  license = lib.licenses.bsd3;
}