summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/text-icu/default.nix
blob: ba467ce6d1347a2d3cc75e440fcfbdb9688a2369 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal, icu, text }:

cabal.mkDerivation (self: {
  pname = "text-icu";
  version = "0.6.3.5";
  sha256 = "1blfw9377yl732ypbjhkvi3vfg6c1f1rkxcsvwmqyhkdzb2agg0a";
  buildDepends = [ text ];
  extraLibraries = [ icu ];
  meta = {
    homepage = "https://bitbucket.org/bos/text-icu";
    description = "Bindings to the ICU library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.simons ];
  };
})