mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
cec5b4d18b
Used a dangling commit on upstream master branch as it was not released and the patch was submitted to opensuse instead of upstream
30 lines
806 B
Nix
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;
|
|
};
|
|
}
|