Merge pull request #180810 from NickCao/jtag-remote-server

jtag-remote-server: init at unstable-2022-06-09
This commit is contained in:
Ivv 2022-07-14 22:01:36 +02:00 committed by GitHub
commit ed56c82699
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, lib, cmake, pkg-config, libftdi1 }:
stdenv.mkDerivation rec {
pname = "jtag-remote-server";
version = "unstable-2022-06-09";
src = fetchFromGitHub {
owner = "jiegec";
repo = pname;
rev = "917d8d298423ba1aa6e75aa92e009b7f27f74a57";
hash = "sha256-Jy0OyRgn9SYpjP3HYWPvRirfxXk4/vMYvZuI3XpPtBw=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ libftdi1 ];
meta = with lib; {
description = "Remote JTAG server for remote debugging";
homepage = "https://github.com/jiegec/jtag-remote-server";
license = licenses.mit;
maintainers = with maintainers; [ nickcao ];
platforms = platforms.unix;
};
}

View File

@ -7628,6 +7628,8 @@ with pkgs;
jsubfinder = callPackage ../tools/security/jsubfinder { };
jtag-remote-server = callPackage ../development/embedded/jtag-remote-server { };
jtc = callPackage ../development/tools/jtc { };
jumpapp = callPackage ../tools/X11/jumpapp {};