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

text-metrics: init at 0.3.2

parent f527b5fb
Branches
Tags
No related merge requests found
...@@ -318,6 +318,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -318,6 +318,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(None Text) (None Text)
(Some "hunit") (Some "hunit")
, callHackage "tasty-wai" "0.1.2.0" , callHackage "tasty-wai" "0.1.2.0"
, callHackage "text-metrics" "0.3.2"
, callHackage "text-zipper" "0.12" , callHackage "text-zipper" "0.12"
, callHackage "these" "1.1.1.1" , callHackage "these" "1.1.1.1"
, callHackage "th-extras" "0.0.0.6" , callHackage "th-extras" "0.0.0.6"
......
...@@ -399,6 +399,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -399,6 +399,8 @@ final: prev: with pkgs.haskell.lib; {
tasty-wai = prev.callPackage (./pkgs/tasty-wai.nix) { }; tasty-wai = prev.callPackage (./pkgs/tasty-wai.nix) { };
text-metrics = prev.callPackage (./pkgs/text-metrics.nix) { };
text-zipper = prev.callPackage (./pkgs/text-zipper.nix) { }; text-zipper = prev.callPackage (./pkgs/text-zipper.nix) { };
th-extras = prev.callPackage (./pkgs/th-extras.nix) { }; th-extras = prev.callPackage (./pkgs/th-extras.nix) { };
......
{ mkDerivation, base, containers, criterion, deepseq, hspec, lib
, QuickCheck, text, vector, weigh
}:
mkDerivation {
pname = "text-metrics";
version = "0.3.2";
sha256 = "bdd730a8f1ebc98a2d56edd73d94ebba6062ee1b49d4d019ffc2c37eaadd836e";
revision = "2";
editedCabalFile = "0h146i2dvv21nc5z1x9a5a9c2v5ml2kvd10krd5p5aaqpng6i1g4";
libraryHaskellDepends = [ base containers text vector ];
testHaskellDepends = [ base hspec QuickCheck text ];
benchmarkHaskellDepends = [ base criterion deepseq text weigh ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/mrkkrp/text-metrics";
description = "Calculate various string metrics efficiently";
license = lib.licenses.bsd3;
}
\ No newline at end of file
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