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

cabal.mkDerivation (self: {
  pname = "text";
  version = "0.11.2.2";
  sha256 = "0ch0fiwjwkpiwamfxxbcka2gp6lbwpqcv7pmik6qm850163f4i33";
  buildDepends = [ deepseq ];
  meta = {
    homepage = "https://github.com/bos/text";
    description = "An efficient packed Unicode text type";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})