1
1
mirror of https://github.com/coot/free-category.git synced 2024-09-17 17:17:19 +03:00
free-category/nix/ansi-terminal-0.6.3.1.nix
Marcin Szamotulski 5b2cc8e2b6
Build with ghc802
2018-10-22 23:46:22 +02:00

13 lines
430 B
Nix

{ mkDerivation, base, stdenv }:
mkDerivation {
pname = "ansi-terminal";
version = "0.6.3.1";
sha256 = "458f98e0c9217897f0ff07f730cfc3ed380089936fb31942aec31bb336608095";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ];
homepage = "https://github.com/feuerbach/ansi-terminal";
description = "Simple ANSI terminal support, with Windows compatibility";
license = stdenv.lib.licenses.bsd3;
}