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

43 lines
745 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, lxqt-build-tools
, qtermwidget
, qtbase
, qttools
, qtx11extras
}:
2016-10-03 15:07:26 -07:00
mkDerivation rec {
2016-10-03 15:07:26 -07:00
pname = "qterminal";
2019-02-26 13:32:21 -08:00
version = "0.14.1";
2016-10-03 15:07:26 -07:00
2017-11-01 19:07:15 -07:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 15:07:26 -07:00
repo = pname;
rev = version;
2019-02-26 13:32:21 -08:00
sha256 = "0bq6lvns56caijdmjm05nsj9vg69v9x5vid24bfxasck6q8nw24w";
2016-10-03 15:07:26 -07:00
};
2017-02-19 04:48:38 -08:00
nativeBuildInputs = [
cmake
2018-05-22 06:54:31 -07:00
lxqt-build-tools
2017-02-19 04:48:38 -08:00
];
2016-10-03 15:07:26 -07:00
buildInputs = [
2019-02-05 15:14:41 -08:00
qtbase
qttools
qtx11extras
2018-05-22 06:54:31 -07:00
qtermwidget
2016-10-03 15:07:26 -07:00
];
meta = with lib; {
2016-10-03 15:07:26 -07:00
description = "A lightweight Qt-based terminal emulator";
homepage = "https://github.com/lxqt/qterminal";
2016-10-03 15:07:26 -07:00
license = licenses.gpl2;
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo globin ];
2016-10-03 15:07:26 -07:00
};
}