summaryrefslogtreecommitdiffstats
path: root/Zpkgs/tv/lentil/default.nix
blob: da3ca2be29ce79ed74e4c5f1f66309e89903dce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:

(pkgs.haskellngPackages.override {
  overrides = self: super: {
    lentil = super.lentil.override {
      mkDerivation = (attrs: self.mkDerivation (attrs // {
        version = "0.1.2.7";
        sha256 = "1g3if2y41li6wyg7ffvpybqvbywiq8bf5b5fb6pz499hinzahb9d";
        patches = [
          ./1.patch
        ];
        doCheck = false;
      }));
    };
  };
}).lentil