mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
f98b0af6fc
https://gitlab.com/DavidGriffith/minipro/-/tags/0.6 Signed-off-by: Henner Zeller <h.zeller@acm.org>
38 lines
923 B
Nix
38 lines
923 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, pkg-config
|
|
, libusb1
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "minipro";
|
|
version = "0.6";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "DavidGriffith";
|
|
repo = "minipro";
|
|
rev = version;
|
|
sha256 = "sha256-6i4PYzSm6lcO/Nb6n3holrNe4TtAnG2o81ZIMAIGqOE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libusb1 ];
|
|
makeFlags = [
|
|
"VERSION=${version}"
|
|
"PREFIX=$(out)"
|
|
"UDEV_DIR=$(out)/lib/udev"
|
|
"COMPLETIONS_DIR=$(out)/share/bash-completion/completions"
|
|
"PKG_CONFIG=${pkg-config}/bin/${pkg-config.targetPrefix}pkg-config"
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
"CFLAGS=-O2"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.com/DavidGriffith/minipro";
|
|
description = "An open source program for controlling the MiniPRO TL866xx series of chip programmers";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.bmwalters ];
|
|
};
|
|
}
|