summaryrefslogtreecommitdiff
path: root/thrift.nix
blob: 6d33a144352b1b684a309e36daef1abea5f44cc1 (plain)
1
2
3
4
5
6
7
8
{ inputs }:
self: super: {
  thrift =
    with super;
    (thrift.override { }).overrideAttrs (old: rec {
      doCheck = false;
    });
}