summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/haskell/text/0.11.2.1.nix
blob: b34c1349ff7681c4a81187d173f0f50452701c5d (plain)
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.1";
  sha256 = "0ajh2xhf8khh5vi4crdjgcs7w27dga7hlwzi8ia5xjs3hzgvbjb9";
  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 ];
  };
})