nixpkgs/pkgs/development/libraries/haskell/charset/default.nix

15 lines
479 B
Nix
Raw Normal View History

2013-09-25 18:32:37 +02:00
{ cabal, semigroups, unorderedContainers }:
cabal.mkDerivation (self: {
pname = "charset";
version = "0.3.5.1";
sha256 = "0bf9s5r2j9bkwmjxzvj5c2c7bhnf5gyh2kkx67lmy8xqalfxgmwn";
2013-09-25 18:32:37 +02:00
buildDepends = [ semigroups unorderedContainers ];
meta = {
homepage = "http://github.com/ekmett/charset";
description = "Fast unicode character sets based on complemented PATRICIA tries";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})