nixpkgs/pkgs/development/libraries/haskell/text/1.2.0.3.nix

24 lines
738 B
Nix
Raw Normal View History

2014-10-31 10:34:32 +00:00
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, deepseq, HUnit, QuickCheck, quickcheckUnicode, random
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
2014-10-31 10:34:32 +00:00
}:
cabal.mkDerivation (self: {
pname = "text";
version = "1.2.0.3";
sha256 = "11prz0vli6rclj04vpx5dnzfyznvsrq7i2jmh4sjy37nic5bqf0x";
2014-10-31 10:34:32 +00:00
buildDepends = [ deepseq ];
testDepends = [
deepseq HUnit QuickCheck quickcheckUnicode random testFramework
testFrameworkHunit testFrameworkQuickcheck2
2014-10-31 10:34:32 +00:00
];
doCheck = false;
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;
};
})