-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathflake.nix
35 lines (33 loc) · 912 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
description = "A fast ICMP/UDP IPv4/v6 Paris traceroute and ping engine";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
packages = {
caracal = pkgs.stdenv.mkDerivation {
pname = "caracal";
version = "0.15.3";
src = self;
nativeBuildInputs = [
pkgs.cmake
];
buildInputs = [
pkgs.cxxopts
pkgs.libtins
pkgs.libpcap
pkgs.spdlog
];
cmakeFlags = [
"-DWITH_BINARY=ON"
];
};
};
defaultPackage = self.packages.${system}.caracal;
}
);
}