nixpkgs/pkgs/development/libraries/haskell/text-icu/default.nix

22 lines
646 B
Nix
Raw Normal View History

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