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

cabal.mkDerivation (self : {
  pname = "text";
  version = "0.11.0.6"; # Haskell Platform 2011.2.0.1
  sha256 = "103l1c8jfwpddsqzwj9jqh89vay8ax1znxqgjqprv2fvr7s0zvkp";
  propagatedBuildInputs = [deepseq];
  meta = {
    description = "An efficient package Unicode text type";
    license = "BSD";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})