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

35 lines
733 B
Nix
Raw Normal View History

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