1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/development/libraries/haskell/charset/default.nix

15 lines
477 B
Nix
Raw Normal View History

2013-09-25 17:32:37 +01:00
{ cabal, semigroups, unorderedContainers }:
cabal.mkDerivation (self: {
pname = "charset";
version = "0.3.6";
sha256 = "1g8m8nd5f100jlhvs6hbny96wy8iaggmp1lv36a5jxc54gmyxjd1";
2013-09-25 17:32:37 +01: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;
};
})