nixpkgs/pkgs/desktops/lxqt/qtermwidget/default.nix

42 lines
776 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qtbase
, qttools
, lxqt-build-tools
, lxqtUpdateScript
}:
2016-10-03 22:03:17 +00:00
mkDerivation rec {
2016-10-03 22:03:17 +00:00
pname = "qtermwidget";
2021-04-16 20:32:42 +00:00
version = "0.17.0";
2016-10-03 22:03:17 +00:00
2017-11-02 02:01:22 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:03:17 +00:00
repo = pname;
rev = version;
2021-04-16 20:32:42 +00:00
sha256 = "0pmkk2mba8z6cgfsd8sy4vhf5d9fn9hvxszzyycyy1ndygjrc1v8";
2016-10-03 22:03:17 +00:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
2016-10-03 22:03:17 +00:00
buildInputs = [
qtbase
qttools
];
2016-10-03 22:03:17 +00:00
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/qtermwidget";
description = "A terminal emulator widget for Qt 5";
license = licenses.gpl2Plus;
2016-10-03 22:03:17 +00:00
platforms = with platforms; unix;
2017-02-19 12:21:45 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 22:03:17 +00:00
};
}