about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/ud/udebug/package.nix
blob: d52b713418a68d40d7f47218f9c71a104ca0d199 (plain) (blame)
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
36
37
38
39
40
41
42
{ lib
, stdenv
, cmake
, fetchgit
, pkg-config
, ubus
, libubox
, ucode
, json_c
}:

stdenv.mkDerivation {
  pname = "udebug";
  version = "unstable-2023-12-06";

  src = fetchgit {
    url = "https://git.openwrt.org/project/udebug.git";
    rev = "6d3f51f9fda706f0cf4732c762e4dbe8c21e12cf";
    hash = "sha256-5dowoFZn9I2IXMQ3Pz+2Eo3rKfihLzjca84MytQIXcU=";
  };

  buildInputs = [
    ubus
    libubox
    ucode
    json_c
  ];

  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  meta = with lib; {
    description = "OpenWrt debugging helper library/service";
    mainProgram = "udebugd";
    homepage = "https://git.openwrt.org/?p=project/udebug.git;a=summary";
    license = licenses.free;
    platforms = platforms.linux;
    maintainers = with maintainers; [ mkg20001 ];
  };
}