{ mkDerivation, aeson, base, bytestring, containers, criterion , fetchurl, file-embed, old-locale, parsec, tasty, tasty-hspec , tasty-hunit, text, time, unordered-containers, vector }: mkDerivation { pname = "htoml"; version = "1.0.0.3"; src = fetchurl { url = "http://example.org/"; sha256 = "abc"; }; libraryHaskellDepends = [ aeson base containers old-locale parsec text time unordered-containers vector ]; testHaskellDepends = [ aeson base bytestring containers file-embed parsec tasty tasty-hspec tasty-hunit text time unordered-containers vector ]; benchmarkHaskellDepends = [ aeson base containers criterion parsec text time unordered-containers vector ]; homepage = "https://github.com/cies/htoml"; description = "Parser for TOML files"; license = stdenv.lib.licenses.bsd3; }