{ mkDerivation, aeson, base, fetchurl, hspec, QuickCheck , shakespeare, text }: mkDerivation { pname = "state-codes"; version = "0.1.3"; src = fetchurl { url = "http://example.org/"; sha256 = "abc"; }; libraryHaskellDepends = [ aeson base shakespeare text ]; testHaskellDepends = [ aeson base hspec QuickCheck text ]; homepage = "https://github.com/acamino/state-codes#README"; description = "ISO 3166-2:US state codes and i18n names"; license = stdenv.lib.licenses.mit; }