jtag-remote-server: init at unstable-2022-06-09

This commit is contained in:
Nick Cao 2022-07-09 14:05:21 +08:00
parent 4eda2b26f6
commit 72259eaf9b
No known key found for this signature in database
GPG key ID: 068A56CEF48FA2C1
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

@ -7618,6 +7618,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 {};