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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
767 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
, qtbase
, qttools
, lxqt-build-tools
, lxqtUpdateScript
}:
2016-10-04 00:03:17 +02:00
mkDerivation rec {
2016-10-04 00:03:17 +02:00
pname = "qtermwidget";
2022-04-16 21:16:32 +02:00
version = "1.1.0";
2016-10-04 00:03:17 +02:00
2017-11-02 03:01:22 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-04 00:03:17 +02:00
repo = pname;
rev = version;
2022-04-16 21:16:32 +02:00
sha256 = "tb1Vlkv8HsNlFCFOYfPnJlhdJmhyDmLE9SaTXZT0gGs=";
2016-10-04 00:03:17 +02:00
};
nativeBuildInputs = [
cmake
lxqt-build-tools
];
2016-10-04 00:03:17 +02:00
buildInputs = [
qtbase
qttools
];
2016-10-04 00:03:17 +02: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-04 00:03:17 +02:00
platforms = with platforms; unix;
2017-02-19 13:21:45 +01:00
maintainers = with maintainers; [ romildo ];
2016-10-04 00:03:17 +02:00
};
}