nixpkgs/pkgs/development/libraries/haskell/text/0.11.0.6.nix
Andres Löh 291df5f0c1 Added the RC of Haskell Platform 2011.2.0.1 ...
svn path=/nixpkgs/trunk/; revision=26674
2011-04-04 08:45:05 +00:00

15 lines
381 B
Nix

{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];
};
})