-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b01319
commit 550ccad
Showing
5 changed files
with
51 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ mkDerivation, base, lib, vty, vty-unix }: | ||
mkDerivation { | ||
pname = "vty-crossplatform"; | ||
version = "0.4.0.0"; | ||
sha256 = "35e5433512b883e83aa8bb8c3475221174445a87e51f162b2ce07f9cf1eb3c1a"; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ base vty vty-unix ]; | ||
description = "Cross-platform support for Vty"; | ||
license = lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ mkDerivation, ansi-terminal, base, blaze-builder, bytestring | ||
, containers, deepseq, lib, microlens, microlens-mtl, microlens-th | ||
, mtl, parsec, stm, terminfo, transformers, unix, utf8-string | ||
, vector, vty | ||
}: | ||
mkDerivation { | ||
pname = "vty-unix"; | ||
version = "0.2.0.0"; | ||
sha256 = "c2ab67e09edc4bade04e269adc059320e83f68b31e428d11a69b20c4f161ddc1"; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
base blaze-builder bytestring containers deepseq microlens | ||
microlens-mtl microlens-th mtl parsec stm terminfo transformers | ||
unix utf8-string vector vty | ||
]; | ||
executableHaskellDepends = [ ansi-terminal base vty ]; | ||
description = "Unix backend for Vty"; | ||
license = lib.licenses.bsd3; | ||
mainProgram = "vty-unix-build-width-table"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters