summaryrefslogtreecommitdiff
path: root/default.nix
blob: 5582923c426732cffe5e94febf9d29c04701d631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  pkgs ?
    import (builtins.fetchTarball {
      url = "https://github.com/nixos/nixpkgs/archive/356c6dcdf37cfb4162f534e5dcabadddbfbd6bfa.tar.gz";
      sha256 = "sha256-JCkJfcZL1qs24L+Fv6OyFW4wTE6+NCg9I8nDf6npP+A=";
    }) {},
}: let
  inherit (pkgs.haskell.lib) dontCheck markUnbroken;
  hp = pkgs.haskell.packages.ghc928.override {
    overrides = self: super: rec {
      cuckoo = markUnbroken (dontCheck super.cuckoo);
    };
  };
in
  hp.callCabal2nix "dedumi" ./. {}