nixpkgs/pkgs/development/libraries/haskell/text/0.11.1.5.nix
Andres Löh 043cba30a0 Fix version of text library.
svn path=/nixpkgs/trunk/; revision=28167
2011-08-05 13:36:57 +00:00

15 lines
367 B
Nix

{cabal, deepseq}:
cabal.mkDerivation (self : {
pname = "text";
version = "0.11.1.5"; # for ghc-7.2.1
sha256 = "0fxxhw932gdvaqafsbw7dfzccc43hv92yhxppzp6jrg0npbyz04l";
propagatedBuildInputs = [deepseq];
meta = {
description = "An efficient package Unicode text type";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})