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

text-manipulate: init at 0.3.1.0

parent 938965e4
No related merge requests found
......@@ -516,6 +516,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "test-framework-hunit" "0.3.0.2"
, callHackage "test-framework-quickcheck2" "0.3.0.5"
, callHackage "text-display" "0.0.3.0"
, callHackage "text-manipulate" "0.3.1.0"
, callHackage "text-metrics" "0.3.2"
, callHackage "text-short" "0.1.5"
, callHackage "text-zipper" "0.12"
......
......@@ -665,6 +665,8 @@ final: prev: with pkgs.haskell.lib; {
text-display = prev.callPackage (./pkgs/text-display.nix) { };
text-manipulate = prev.callPackage (./pkgs/text-manipulate.nix) { };
text-metrics = prev.callPackage (./pkgs/text-metrics.nix) { };
text-short = prev.callPackage (./pkgs/text-short.nix) { };
......
{ mkDerivation, base, criterion, lib, tasty, tasty-hunit, text }:
mkDerivation {
pname = "text-manipulate";
version = "0.3.1.0";
sha256 = "9a67efef74bf8a0166436e11bc5b668c10a943c5454fdac3c8de366668a306bc";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base text ];
testHaskellDepends = [ base tasty tasty-hunit text ];
benchmarkHaskellDepends = [ base criterion text ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/brendanhay/text-manipulate";
description = "Case conversion, word boundary manipulation, and textual subjugation";
license = lib.licenses.mpl20;
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