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

46 lines
840 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, qtermwidget
, qtbase
, qttools
, qtx11extras
, lxqtUpdateScript
}:
2016-10-03 22:07:26 +00:00
mkDerivation rec {
2016-10-03 22:07:26 +00:00
pname = "qterminal";
2020-04-26 20:25:26 +00:00
version = "0.15.0";
2016-10-03 22:07:26 +00:00
2017-11-02 02:07:15 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 22:07:26 +00:00
repo = pname;
rev = version;
2020-04-26 20:25:26 +00:00
sha256 = "1vna0fvdasrdx7l5zxaaxi1v9fy34g2qblgkdhpczxivnmmxm5a3";
2016-10-03 22:07:26 +00:00
};
2017-02-19 12:48:38 +00:00
nativeBuildInputs = [
cmake
2018-05-22 13:54:31 +00:00
lxqt-build-tools
2017-02-19 12:48:38 +00:00
];
2016-10-03 22:07:26 +00:00
buildInputs = [
2019-02-05 23:14:41 +00:00
qtbase
qttools
qtx11extras
2018-05-22 13:54:31 +00:00
qtermwidget
2016-10-03 22:07:26 +00:00
];
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
2016-10-03 22:07:26 +00:00
description = "A lightweight Qt-based terminal emulator";
homepage = "https://github.com/lxqt/qterminal";
2016-10-03 22:07:26 +00:00
license = licenses.gpl2;
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo globin ];
2016-10-03 22:07:26 +00:00
};
}