evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ud / udebug / package.nix
blobd52b713418a68d40d7f47218f9c71a104ca0d199
1 { lib
2 , stdenv
3 , cmake
4 , fetchgit
5 , pkg-config
6 , ubus
7 , libubox
8 , ucode
9 , json_c
12 stdenv.mkDerivation {
13   pname = "udebug";
14   version = "unstable-2023-12-06";
16   src = fetchgit {
17     url = "https://git.openwrt.org/project/udebug.git";
18     rev = "6d3f51f9fda706f0cf4732c762e4dbe8c21e12cf";
19     hash = "sha256-5dowoFZn9I2IXMQ3Pz+2Eo3rKfihLzjca84MytQIXcU=";
20   };
22   buildInputs = [
23     ubus
24     libubox
25     ucode
26     json_c
27   ];
29   nativeBuildInputs = [
30     cmake
31     pkg-config
32   ];
34   meta = with lib; {
35     description = "OpenWrt debugging helper library/service";
36     mainProgram = "udebugd";
37     homepage = "https://git.openwrt.org/?p=project/udebug.git;a=summary";
38     license = licenses.free;
39     platforms = platforms.linux;
40     maintainers = with maintainers; [ mkg20001 ];
41   };