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

42 lines
772 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";
2020-04-26 20:25:26 +00:00
version = "0.15.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;
2020-04-26 20:25:26 +00:00
sha256 = "07wvcc650998yav9hr4hpm842j0iqdvls3mn9n2n4v8xvm7cii2m";
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; {
2016-10-03 22:03:17 +00:00
description = "A terminal emulator widget for Qt 5";
homepage = "https://github.com/lxqt/qtermwidget";
2016-10-03 22:03:17 +00:00
license = licenses.gpl2;
platforms = with platforms; unix;
2017-02-19 12:21:45 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 22:03:17 +00:00
};
}