cabal2nix-2.8.2: test/golden-test-cases/indentation-parsec.nix.golden
{ mkDerivation, base, fetchurl, indentation-core, mtl, parsec
, tasty, tasty-hunit
}:
mkDerivation {
pname = "indentation-parsec";
version = "0.0.0.1";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
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 = stdenv.lib.licenses.bsd3;
}