packages feed

cabal2nix-2.9.3: test/golden-test-cases/text-icu.nix.golden

{ mkDerivation, array, base, bytestring, deepseq, directory
, ghc-prim, HUnit, icu, QuickCheck, random, stdenv, test-framework
, test-framework-hunit, test-framework-quickcheck2, text
}:
mkDerivation {
  pname = "text-icu";
  version = "0.7.0.1";
  sha256 = "deadbeef";
  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;
}