Merge pull request #95867 from trepetti/fujprog

fujprog: init at 4.6
This commit is contained in:
Ryan Mulligan 2020-08-21 22:03:01 -07:00 committed by GitHub
commit 1c014d4a0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ stdenv
, fetchFromGitHub
, cmake
, pkgconfig
, libftdi1
, libusb-compat-0_1
}:
stdenv.mkDerivation rec {
pname = "fujprog";
version = "4.6";
src = fetchFromGitHub {
owner = "kost";
repo = "${pname}";
rev = "v${version}";
sha256 = "04l5rrfrp3pflwz5ncwvb4ibbsqib2259m23bzfi8m80aj216shd";
};
nativeBuildInputs = [
cmake
pkgconfig
];
buildInputs = [
libftdi1
libusb-compat-0_1
];
meta = with stdenv.lib; {
description = "JTAG programmer for the ULX3S and ULX2S open hardware FPGA development boards.";
homepage = "https://github.com/kost/fujprog";
license = licenses.bsd2;
maintainers = with maintainers; [ trepetti ];
platforms = platforms.linux ++ platforms.darwin;
};
}

View File

@ -10781,6 +10781,8 @@ in
inherit (darwin.apple_sdk.frameworks) CoreServices;
};
fujprog = callPackage ../development/tools/misc/fujprog { };
funnelweb = callPackage ../development/tools/literate-programming/funnelweb { };
gede = libsForQt5.callPackage ../development/tools/misc/gede { };