nixpkgs/pkgs/tools/misc/cutecom/default.nix

33 lines
917 B
Nix
Raw Normal View History

2019-10-19 13:34:57 +00:00
{ mkDerivation, lib, fetchFromGitLab, qtbase, qtserialport, cmake }:
2015-02-19 12:34:01 +00:00
2019-10-19 13:34:57 +00:00
mkDerivation rec {
pname = "cutecom";
version = "0.51.0+patch";
2019-10-19 13:34:57 +00:00
src = fetchFromGitLab {
owner = "cutecom";
repo = "cutecom";
rev = "70d0c497acf8f298374052b2956bcf142ed5f6ca";
sha256 = "X8jeESt+x5PxK3rTNC1h1Tpvue2WH09QRnG2g1eMoEE=";
2015-02-19 12:34:01 +00:00
};
2017-07-11 20:18:09 +00:00
2019-10-19 13:34:57 +00:00
buildInputs = [ qtbase qtserialport ];
nativeBuildInputs = [ cmake ];
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 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/";
license = licenses.gpl3;
maintainers = with maintainers; [ bennofs ];
platforms = platforms.linux;
2015-02-19 12:34:01 +00:00
};
}