From dd67429139b5b5fc9dd6da2deaa12ef575e3f537 Mon Sep 17 00:00:00 2001 From: Steffen Jost Date: Wed, 4 Oct 2023 14:46:54 +0000 Subject: [PATCH] shell-nix: remove node2nix (non-existant) and profiteur (ghc-prof currently markes as broken) --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index 9d891d877..0988cc475 100644 --- a/shell.nix +++ b/shell.nix @@ -275,7 +275,7 @@ in pkgs.mkShell { ++ (with pkgs; [ stack nodejs-14_x postgresql_12 openldap exiftool memcached minio minio-client gup reuse pre-commit - node2nix + # node2nix # busybox # for print services, but interferes with build commands in develop-shell htop pdftk # pdftk just for testing pdf-passwords @@ -290,5 +290,5 @@ in pkgs.mkShell { ; }) ] - ) ++ (with pkgs.haskellPackages; [ yesod-bin hlint cabal-install weeder profiteur ]); + ) ++ (with pkgs.haskellPackages; [ yesod-bin hlint cabal-install weeder ]); }