From 27e11b20b06f2f2dbfb56c0998a63169b4b8abc4 Mon Sep 17 00:00:00 2001 From: Joris Date: Wed, 8 Nov 2017 23:47:26 +0100 Subject: Use a better project structure --- tools.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tools.nix (limited to 'tools.nix') diff --git a/tools.nix b/tools.nix new file mode 100644 index 0000000..a06757e --- /dev/null +++ b/tools.nix @@ -0,0 +1,12 @@ +with import {}; { + env = stdenv.mkDerivation { + name = "tools"; + buildInputs = with pkgs; [ + nodePackages.nodemon + sqlite + cabal-install + tmux + tmuxinator + ]; + }; +} -- cgit v1.2.3 From 5a63f7be9375e3ab888e4232dd7ef72c2f1ffae1 Mon Sep 17 00:00:00 2001 From: Joris Date: Mon, 13 Nov 2017 23:56:40 +0100 Subject: Setup stylish-haskell --- tools.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'tools.nix') diff --git a/tools.nix b/tools.nix index a06757e..f09ad13 100644 --- a/tools.nix +++ b/tools.nix @@ -1,12 +1,17 @@ with import {}; { env = stdenv.mkDerivation { name = "tools"; - buildInputs = with pkgs; [ - nodePackages.nodemon + buildInputs = with pkgs; with nodePackages; with haskellPackages; [ + nodemon sqlite cabal-install tmux tmuxinator + (import ./stylish-haskell { + inherit mkDerivation aeson base bytestring containers directory filepath + fetchFromGitHub haskell-src-exts mtl syb yaml stylish-haskell strict + optparse-applicative HUnit test-framework test-framework-hunit stdenv; + }) ]; }; } -- cgit v1.2.3 From a4acc2e84158fa822f88a1d0bdddb470708b5809 Mon Sep 17 00:00:00 2001 From: Joris Date: Wed, 3 Jan 2018 17:31:20 +0100 Subject: Modify weelky report and payment search interface - Add payment balance in weekly report - Show a message and hide pages when the search results in no results - Go to page 1 when the search is updated / erased --- tools.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'tools.nix') diff --git a/tools.nix b/tools.nix index f09ad13..8c7d91f 100644 --- a/tools.nix +++ b/tools.nix @@ -7,11 +7,12 @@ with import {}; { cabal-install tmux tmuxinator - (import ./stylish-haskell { - inherit mkDerivation aeson base bytestring containers directory filepath - fetchFromGitHub haskell-src-exts mtl syb yaml stylish-haskell strict - optparse-applicative HUnit test-framework test-framework-hunit stdenv; - }) + stylish-haskell + # (import ./stylish-haskell { + # inherit mkDerivation aeson base bytestring containers directory filepath + # fetchFromGitHub haskell-src-exts mtl syb yaml stylish-haskell strict + # optparse-applicative HUnit test-framework test-framework-hunit stdenv; + # }) ]; }; } -- cgit v1.2.3 From df83b634006c699cfa1e921bf74ce951a906a62f Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 24 Jun 2018 22:02:00 +0200 Subject: Use date input type --- tools.nix | 5 ----- 1 file changed, 5 deletions(-) (limited to 'tools.nix') diff --git a/tools.nix b/tools.nix index 8c7d91f..5fd5129 100644 --- a/tools.nix +++ b/tools.nix @@ -8,11 +8,6 @@ with import {}; { tmux tmuxinator stylish-haskell - # (import ./stylish-haskell { - # inherit mkDerivation aeson base bytestring containers directory filepath - # fetchFromGitHub haskell-src-exts mtl syb yaml stylish-haskell strict - # optparse-applicative HUnit test-framework test-framework-hunit stdenv; - # }) ]; }; } -- cgit v1.2.3 From 8a28f608d8e08fba4bbe54b46804d261686c3c03 Mon Sep 17 00:00:00 2001 From: Joris Date: Tue, 30 Oct 2018 20:33:17 +0100 Subject: Upgrade reflex-platform --- tools.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools.nix') diff --git a/tools.nix b/tools.nix index 5fd5129..9a506c7 100644 --- a/tools.nix +++ b/tools.nix @@ -1,13 +1,13 @@ with import {}; { env = stdenv.mkDerivation { name = "tools"; - buildInputs = with pkgs; with nodePackages; with haskellPackages; [ + buildInputs = with pkgs; with nodePackages; [ nodemon sqlite cabal-install tmux tmuxinator - stylish-haskell + haskellPackages.stylish-haskell ]; }; } -- cgit v1.2.3