nixpkgs/pkgs/tools/misc/cutecom/default.nix
freezeboy cec5b4d18b cutecom: fix build with Qt5.15
Used a dangling commit on upstream master branch as it was not released
and the patch was submitted to opensuse instead of upstream
2020-11-20 22:24:25 +01:00

30 lines
806 B
Nix

{ mkDerivation, lib, fetchFromGitLab, qtbase, qtserialport, cmake }:
mkDerivation rec {
pname = "cutecom";
version = "0.51.0+patch";
src = fetchFromGitLab {
owner = "cutecom";
repo = "cutecom";
rev = "70d0c497acf8f298374052b2956bcf142ed5f6ca";
sha256 = "X8jeESt+x5PxK3rTNC1h1Tpvue2WH09QRnG2g1eMoEE=";
};
preConfigure = ''
substituteInPlace CMakeLists.txt \
--replace "#find_package(Serialport REQUIRED)" "find_package(Qt5SerialPort REQUIRED)"
'';
buildInputs = [ qtbase qtserialport ];
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "A graphical serial terminal";
homepage = "https://gitlab.com/cutecom/cutecom/";
license = licenses.gpl3;
maintainers = with maintainers; [ bennofs ];
platforms = platforms.linux;
};
}