forked from mirrors/nixpkgs
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qterminal/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/9bvz8bq3vsclmvyziswscn8hxkgsyvv4-qterminal-0.9.0/bin/qterminal had a zero exit code or showed the expected version - 0 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 0.9.0 with grep in /nix/store/9bvz8bq3vsclmvyziswscn8hxkgsyvv4-qterminal-0.9.0 - directory tree listing: https://gist.github.com/76f97d0d578674b7b80479185f5029e5 - du listing: https://gist.github.com/56dfa13e4cd8c75bf2d88861ccd8fca1
37 lines
780 B
Nix
37 lines
780 B
Nix
{ stdenv, fetchFromGitHub, cmake, qt5, lxqt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "qterminal";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lxde";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1z9wlyj5i192jfq3dcxjf8wzx9x332f19c9ll7zv69cq21kyy9wn";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
lxqt.lxqt-build-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
qt5.qtbase
|
|
qt5.qttools
|
|
qt5.qtx11extras
|
|
lxqt.qtermwidget
|
|
];
|
|
|
|
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A lightweight Qt-based terminal emulator";
|
|
homepage = https://github.com/lxde/qterminal;
|
|
license = licenses.gpl2;
|
|
platforms = with platforms; unix;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|