summaryrefslogtreecommitdiffstats
path: root/pkgs/default.nix
blob: 6f2b4c4e8c51e636ef067d015bab040c301f658a (plain)
1
2
3
4
5
6
7
8
9
self: super: {
  haskell = super.haskell // {
    packageOverrides = self.lib.composeExtensions super.haskell.packageOverrides (let
      pkgs = self;
    in self: super: {
      sensors = pkgs.haskell.lib.dontCheck (self.callCabal2nix "sensors" ./.. { });
    });
  };
}