qtermwidget: init at 0.7.0
This commit is contained in:
parent
5c1d1caa16
commit
5fc6923af7
26
pkgs/desktops/lxqt/core/qtermwidget/default.nix
Normal file
26
pkgs/desktops/lxqt/core/qtermwidget/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, qt5 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "qtermwidget";
|
||||||
|
version = "0.7.0";
|
||||||
|
|
||||||
|
srcs = fetchFromGitHub {
|
||||||
|
owner = "lxde";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "18dnrzpbijh0xdgx83zs8nlbxk0d7hgzib54fqqvxyrjjy4g9scz";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
buildInputs = [ qt5.qtbase ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A terminal emulator widget for Qt 5";
|
||||||
|
homepage = https://github.com/lxde/qtermwidget;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ romildo ];
|
||||||
|
platforms = with platforms; unix;
|
||||||
|
};
|
||||||
|
}
|
@ -46,5 +46,7 @@ let
|
|||||||
lxqt-qtplugin = callPackage ./core/lxqt-qtplugin { };
|
lxqt-qtplugin = callPackage ./core/lxqt-qtplugin { };
|
||||||
lxqt-session = callPackage ./core/lxqt-session { };
|
lxqt-session = callPackage ./core/lxqt-session { };
|
||||||
lxqt-sudo = callPackage ./core/lxqt-sudo { };
|
lxqt-sudo = callPackage ./core/lxqt-sudo { };
|
||||||
|
pavucontrol-qt = callPackage ./core/pavucontrol-qt { };
|
||||||
|
qtermwidget = callPackage ./core/qtermwidget { };
|
||||||
|
|
||||||
in self
|
in self
|
||||||
|
Loading…
x
Reference in New Issue
Block a user