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

text-rope: init at 0.2

parent 4f2221c9
No related merge requests found
...@@ -593,6 +593,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -593,6 +593,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "text-display" "0.0.3.0" , callHackage "text-display" "0.0.3.0"
, callHackage "text-manipulate" "0.3.1.0" , callHackage "text-manipulate" "0.3.1.0"
, callHackage "text-metrics" "0.3.2" , callHackage "text-metrics" "0.3.2"
, callHackage "text-rope" "0.2"
, callHackage "text-short" "0.1.5" , callHackage "text-short" "0.1.5"
, callHackage "text-zipper" "0.12" , callHackage "text-zipper" "0.12"
, callHackage "these" "1.1.1.1" , callHackage "these" "1.1.1.1"
......
...@@ -817,6 +817,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -817,6 +817,8 @@ final: prev: with pkgs.haskell.lib; {
text-metrics = prev.callPackage (./pkgs/text-metrics.nix) { }; text-metrics = prev.callPackage (./pkgs/text-metrics.nix) { };
text-rope = prev.callPackage (./pkgs/text-rope.nix) { };
text-short = prev.callPackage (./pkgs/text-short.nix) { }; text-short = prev.callPackage (./pkgs/text-short.nix) { };
text-zipper = prev.callPackage (./pkgs/text-zipper.nix) { }; text-zipper = prev.callPackage (./pkgs/text-zipper.nix) { };
......
{ mkDerivation
, base
, deepseq
, lib
, random
, tasty
, tasty-bench
, tasty-quickcheck
, text
, vector
}:
mkDerivation {
pname = "text-rope";
version = "0.2";
sha256 = "b14422855e9cc375a31c22758454013ac629671331de6ccb77b496509bcae78b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base deepseq text vector ];
testHaskellDepends = [ base tasty tasty-quickcheck text ];
benchmarkHaskellDepends = [ base random tasty-bench text ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/Bodigrim/text-rope";
description = "Text lines and ropes";
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