Skip to content
Snippets Groups Projects
Commit f7f13a7e authored by Daniel Firth's avatar Daniel Firth
Browse files

text-short: init at 0.1.5

parent ef73ddd2
No related merge requests found
......@@ -485,6 +485,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "test-framework-quickcheck2" "0.3.0.5"
, callHackage "text-display" "0.0.3.0"
, callHackage "text-metrics" "0.3.2"
, callHackage "text-short" "0.1.5"
, callHackage "text-zipper" "0.12"
, callHackage "these" "1.1.1.1"
, callHackage "these-skinny" "0.7.5"
......
......@@ -603,6 +603,8 @@ final: prev: with pkgs.haskell.lib; {
text-metrics = prev.callPackage (./pkgs/text-metrics.nix) { };
text-short = prev.callPackage (./pkgs/text-short.nix) { };
text-zipper = prev.callPackage (./pkgs/text-zipper.nix) { };
tf-random = prev.callPackage (./pkgs/tf-random.nix) { };
......
{ mkDerivation
, base
, binary
, bytestring
, deepseq
, ghc-prim
, hashable
, lib
, tasty
, tasty-hunit
, tasty-quickcheck
, template-haskell
, text
}:
mkDerivation {
pname = "text-short";
version = "0.1.5";
sha256 = "a35ec6cde2ada084c1a050dc5885be5ab01f851b93d744cf0facbc1c18002dda";
revision = "1";
editedCabalFile = "0gmmwwchy9312kz8kr5jhiamqrnjqxdqg1wkrww4289yfj1p7dzb";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
binary
bytestring
deepseq
ghc-prim
hashable
template-haskell
text
];
testHaskellDepends = [
base
binary
bytestring
tasty
tasty-hunit
tasty-quickcheck
template-haskell
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Memory-efficient representation of Unicode text strings";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment