gcfflasher: 4.0.3-beta -> 4.3.0-beta

Diff: https://github.com/dresden-elektronik/gcfflasher/compare/v4.0.3-beta...v4.3.0-beta
This commit is contained in:
fleaz 2023-12-11 11:47:45 +01:00
parent 703c832c76
commit 0ea45cd17b
No known key found for this signature in database
GPG Key ID: AED15F8FDD04D083

View File

@ -8,13 +8,13 @@
stdenv.mkDerivation rec {
pname = "gcfflasher";
version = "4.0.3-beta";
version = "4.3.0-beta";
src = fetchFromGitHub {
owner = "dresden-elektronik";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-m+iDBfsHo+PLYd3K8JaKwhIXcnj+Q8w7gIgmHp+0plk=";
hash = "sha256-H1CZ7rAM1QpdmSnUpvg6ytln/0MQKju/C4aIk3xl0PA=";
};
nativeBuildInputs = [
@ -22,11 +22,6 @@ stdenv.mkDerivation rec {
cmake
];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace 'main_windows.c' 'main_posix.c'
'';
buildInputs = lib.optionals stdenv.isLinux [
libgpiod
];