Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
supki committed Mar 13, 2023
1 parent 9aaaac3 commit 04f6ccc
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 26 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.3.4
=====

* Provided `hSize` on Windows. (https://github.com/biegunka/terminal-size/pull/18)

0.3.3
=====

Expand Down
2 changes: 0 additions & 2 deletions default.nix

This file was deleted.

9 changes: 0 additions & 9 deletions package.nix

This file was deleted.

26 changes: 13 additions & 13 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc801" }: let
inherit (nixpkgs) pkgs;
ghc = pkgs.haskell.packages.${compiler}.ghcWithPackages(ps: [
ps.hdevtools ps.hlint ps.ghc-mod
]);
cabal-install = pkgs.haskell.packages.${compiler}.cabal-install;
pkg = (import ./default.nix { inherit nixpkgs compiler; });
in
pkgs.stdenv.mkDerivation rec {
name = pkg.pname;
buildInputs = [ ghc cabal-install ] ++ pkg.env.buildInputs;
shellHook = "${pkg.env.shellHook}\nexport IN_WHICH_NIX_SHELL=${name}";
}
{ pkgs ? import <nixpkgs> {}
, ghc ? pkgs.haskell.compiler.ghc8107
, stack ? pkgs.stack
}:
pkgs.mkShell {
buildInputs = with pkgs; [
ghc
stack
];

shellHook = ''
'';
}
4 changes: 2 additions & 2 deletions terminal-size.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: terminal-size
version: 0.3.3
version: 0.3.4
synopsis: Get terminal window height and width
description:
Get terminal window height and width without ncurses dependency.
Expand All @@ -21,7 +21,7 @@ source-repository head
source-repository this
type: git
location: https://github.com/biegunka/terminal-size
tag: 0.3.3
tag: 0.3.4

library
default-language:
Expand Down

0 comments on commit 04f6ccc

Please sign in to comment.