summaryrefslogtreecommitdiffstats
path: root/distro/pkg/nix/top-level.nix
blob: bdd336049ee7380659e2586c1ae8437834eabe68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with import <nixpkgs> {};

(callPackage ./. {
}).overrideAttrs (attrs: {
  src = ./knot-resolver-{{ version }}.tar.xz;

  # This just breaks in our GitLab CI (not locally and not on hydra.nixos.org)
  installCheckPhase = ''
    meson test --print-errorlogs --no-suite snowflake
  '';
})