Skip to content

Commit

Permalink
ftx-prog: init at 0.4 (NixOS#315229)
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 30, 2024
2 parents 8ee77c6 + 9006995 commit 3306d2f
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pkgs/by-name/ft/ftx-prog/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
stdenv,
lib,
fetchFromGitHub,
libftdi,
libusb1,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {

pname = "ftx-prog";
version = "0.4";

src = fetchFromGitHub {
owner = "richardeoin";
repo = "ftx-prog";
rev = "v${finalAttrs.version}";
hash = "sha256-wBOzsJ1XIkswuwuCwGQk2Q+RUsGe5EOlbAhcf0R7rfc=";
};

nativeBuildInputs = [ pkg-config ];
buildInputs = [
libftdi
libusb1
];

installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv ftx_prog $out/bin
runHook postInstall
'';

meta = {
description = "Command-line alternative to the FTDI FTProg utility for FTDI's FT-X series";
mainProgram = "ftx_prog";
homepage = "https://github.com/richardeoin/ftx-prog";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = [ lib.maintainers.funkeleinhorn ];
};
})

0 comments on commit 3306d2f

Please sign in to comment.