{ mkDerivation, array, base, bytestring, deepseq, directory , fetchurl, ghc-prim, HUnit, icu, QuickCheck, random , test-framework, test-framework-hunit, test-framework-quickcheck2 , text }: mkDerivation { pname = "text-icu"; version = "0.7.0.1"; src = fetchurl { url = "http://example.org/"; sha256 = "abc"; }; libraryHaskellDepends = [ base bytestring deepseq text ]; librarySystemDepends = [ icu ]; testHaskellDepends = [ array base bytestring deepseq directory ghc-prim HUnit QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 text ]; homepage = "https://github.com/bos/text-icu"; description = "Bindings to the ICU library"; license = stdenv.lib.licenses.bsd3; }