2022-12-27 18:22:46 +00:00
|
|
|
{ stdenv, lib, fetchFromGitLab, qtserialport, cmake, wrapQtAppsHook }:
|
2015-02-19 12:34:01 +00:00
|
|
|
|
2022-12-27 18:22:46 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "cutecom";
|
2020-11-07 11:32:26 +00:00
|
|
|
version = "0.51.0+patch";
|
2019-10-19 13:34:57 +00: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 20:18:09 +00:00
|
|
|
|
2022-12-27 18:22:46 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace CMakeLists.txt \
|
|
|
|
--replace "/Applications" "$out/Applications"
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ qtserialport ];
|
|
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook ];
|
2019-10-19 13:34:57 +00:00
|
|
|
|
2022-12-27 18:22:46 +00:00
|
|
|
postInstall = if stdenv.isDarwin then ''
|
|
|
|
mkdir -p $out/Applications
|
|
|
|
'' else ''
|
2021-03-11 03:39:59 +00:00
|
|
|
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 13:34:57 +00:00
|
|
|
meta = with lib; {
|
2015-02-19 12:34:01 +00:00
|
|
|
description = "A graphical serial terminal";
|
2019-10-19 13:34:57 +00:00
|
|
|
homepage = "https://gitlab.com/cutecom/cutecom/";
|
2022-12-27 18:22:46 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2019-10-19 13:34:57 +00:00
|
|
|
maintainers = with maintainers; [ bennofs ];
|
2022-12-27 18:22:46 +00:00
|
|
|
platforms = platforms.unix;
|
2015-02-19 12:34:01 +00:00
|
|
|
};
|
|
|
|
}
|