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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cutecom";
|
2020-11-07 11:32:26 +00:00
|
|
|
version = "0.51.0+patch";
|
2019-10-19 14:34:57 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "cutecom";
|
|
|
|
repo = "cutecom";
|
2020-11-07 11:32:26 +00:00
|
|
|
rev = "70d0c497acf8f298374052b2956bcf142ed5f6ca";
|
|
|
|
sha256 = "X8jeESt+x5PxK3rTNC1h1Tpvue2WH09QRnG2g1eMoEE=";
|
2015-02-19 12:34:01 +00:00
|
|
|
};
|
2017-07-11 21:18:09 +01:00
|
|
|
|
2019-10-19 14:34:57 +01:00
|
|
|
buildInputs = [ qtbase qtserialport ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-03-11 03:39:59 +00:00
|
|
|
postInstall = ''
|
|
|
|
cd ..
|
|
|
|
mkdir -p "$out"/share/{applications,icons/hicolor/scalable/apps,man/man1}
|
|
|
|
cp cutecom.desktop "$out/share/applications"
|
|
|
|
cp images/cutecom.svg "$out/share/icons/hicolor/scalable/apps"
|
|
|
|
cp cutecom.1 "$out/share/man/man1"
|
|
|
|
'';
|
|
|
|
|
2019-10-19 14:34:57 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|