summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/text-icu/default.nix
blob: 4a7db1560ea7cb820a64527c386a52fa36cd38f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, deepseq, HUnit, icu, QuickCheck, random, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, text
}:

cabal.mkDerivation (self: {
  pname = "text-icu";
  version = "0.6.3.7";
  sha256 = "0mzzjamcxfrld9xwgdww3890zzkgmi1qb83v5z9zrixmdgwkvhf4";
  buildDepends = [ text ];
  testDepends = [
    deepseq HUnit QuickCheck random testFramework testFrameworkHunit
    testFrameworkQuickcheck2 text
  ];
  extraLibraries = [ icu ];
  doCheck = !self.stdenv.isDarwin;
  meta = {
    homepage = "https://github.com/bos/text-icu";
    description = "Bindings to the ICU library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})