python312Packages.vdf: avoid using pname for src.repo
[NixPkgs.git] / pkgs / os-specific / linux / batman-adv / batctl.nix
blobe42b1b18d584113f33e31f5053747c7d999a7d99
1 { lib, stdenv, fetchurl, pkg-config, libnl }:
3 let cfg = import ./version.nix; in
5 stdenv.mkDerivation rec {
6   pname = "batctl";
7   inherit (cfg) version;
9   src = fetchurl {
10     url = "https://downloads.open-mesh.org/batman/releases/batman-adv-${version}/${pname}-${version}.tar.gz";
11     sha256 = cfg.sha256.${pname};
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ libnl ];
17   preBuild = ''
18     makeFlags="PREFIX=$out"
19   '';
21   meta = {
22     homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki";
23     description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2, control tool";
24     mainProgram = "batctl";
25     license = lib.licenses.gpl2Only;
26     maintainers = with lib.maintainers; [ fpletz ];
27     platforms = with lib.platforms; linux;
28   };