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

text-display: init at 0.0.3.0

parent 3c5c5955
No related merge requests found
...@@ -409,6 +409,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -409,6 +409,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-display" "0.0.3.0"
, callHackage "text-metrics" "0.3.2" , 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"
......
...@@ -491,6 +491,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -491,6 +491,8 @@ final: prev: with pkgs.haskell.lib; {
tasty-wai = prev.callPackage (./pkgs/tasty-wai.nix) { }; tasty-wai = prev.callPackage (./pkgs/tasty-wai.nix) { };
text-display = prev.callPackage (./pkgs/text-display.nix) { };
text-metrics = prev.callPackage (./pkgs/text-metrics.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) { };
......
{ mkDerivation, base, bytestring, hspec, lib, quickcheck-text
, should-not-typecheck, text
}:
mkDerivation {
pname = "text-display";
version = "0.0.3.0";
sha256 = "4c7b94ba7776874f4dbbf0a686e8039fd1d174af7ba7477bac92c8af198d6fae";
libraryHaskellDepends = [ base bytestring text ];
testHaskellDepends = [
base bytestring hspec quickcheck-text should-not-typecheck text
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell-text/text-display#readme";
description = "A typeclass for user-facing output";
license = lib.licenses.mit;
}
\ 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