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

terminal-size: init at 0.3.3

parent 8e8c8be2
No related merge requests found
......@@ -642,6 +642,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "tasty-quickcheck" "0.10.2"
, callHackage "tasty-wai" "0.1.2.0"
, callHackage "temporary" "1.3"
, callHackage "terminal-size" "0.3.3"
, callHackage "test-framework" "0.8.2.0"
, callHackage "test-framework-hunit" "0.3.0.2"
, callHackage "test-framework-quickcheck2" "0.3.0.5"
......
......@@ -923,6 +923,8 @@ self: with pkgs.haskell.lib; {
temporary = self.callPackage (./pkgs/temporary.nix) { };
terminal-size = self.callPackage (./pkgs/terminal-size.nix) { };
test-framework = self.callPackage (./pkgs/test-framework.nix) { };
test-framework-hunit = self.callPackage (./pkgs/test-framework-hunit.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "terminal-size";
version = "0.3.3";
sha256 = "8c174c8fa7200be2caffd6d25f789fd3c73f4b7b02989f332a42d7901fca60c3";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Get terminal window height and width";
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