From 9a69759a592cff59eddd5480cd37157c2cf445db Mon Sep 17 00:00:00 2001 From: Frederick Pringle Date: Thu, 30 Apr 2026 22:03:17 +0200 Subject: [PATCH] Remove `postgresql-operation-counting` from `nix/nixkpgs.nix` How on earth did this get here?? --- nix/nixpkgs.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/nix/nixpkgs.nix b/nix/nixpkgs.nix index 0ff7487..8bcb594 100644 --- a/nix/nixpkgs.nix +++ b/nix/nixpkgs.nix @@ -18,11 +18,7 @@ let haskell-overrides = hfinal: hprev: let # When we pin specific versions of Haskell packages, they'll go here using callCabal2Nix. - packageOverrides = { - # postgresql-operation-counting = hfinal.callCabal2nix "postgresql-operation-counting" sources.postgresql-operation-counting { }; - # postgresql-operation-counting = hfinal.callCabal2nix "postgresql-operation-counting" "${sources.postgresql-operation-counting}" { }; - postgresql-operation-counting = import "${sources.postgresql-operation-counting}"; - }; + packageOverrides = { }; makePackage = name: path: let pkg = hfinal.callCabal2nix name (gitignore path) { };