3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/text-icu/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

16 lines
425 B
Nix

{ 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;
};
})