aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/liburing/.yandex_meta/override.nix
blob: afc13140e3bbf7034f3dc486caab61c2db9b4508 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pkgs: attrs: with pkgs; with attrs; rec {
  name = "liburing";
  version = "2.7";

  src = fetchFromGitHub {
    owner = "axboe";
    repo = "liburing";
    rev    = "liburing-${version}";
    hash = "sha256-WhNlO2opPM7v4LOLWpmzPv31++zmn5Hmb6Su9IQBDH8=";
  };

  buildPhase = ''
    make -j$(nproc) -C src
    make -j$(nproc) -C test
  '';

  patches = [];
}