1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 00:54:11 +00:00
nixpkgs/pkgs/tools/misc/cutecom/default.nix

30 lines
806 B
Nix
Raw Normal View History

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