lxqt-themes: init at 0.12.0
This commit is contained in:
parent
8d7341e10b
commit
94e02ae507
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, lxqt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "lxqt-themes";
|
||||
version = "0.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lxde";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0f7bipkxkl741lpb2cziw9wlqy05514nqqrppsz5g4y8bmzw910n";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
lxqt.lxqt-build-tools
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace CMakeLists.txt \
|
||||
--replace "DESTINATION \"\''${LXQT_GRAPHICS_DIR}" "DESTINATION \"share/lxqt/graphics"
|
||||
substituteInPlace themes/CMakeLists.txt \
|
||||
--replace "DESTINATION \"\''${LXQT_SHARE_DIR}" "DESTINATION \"share/lxqt"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Themes, graphics and icons for LXQt";
|
||||
homepage = https://github.com/lxde/lxqt-themes;
|
||||
license = licenses.lgpl21;
|
||||
platforms = with platforms; unix;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
};
|
||||
}
|
|
@ -45,6 +45,7 @@ let
|
|||
lxqt-qtplugin = callPackage ./core/lxqt-qtplugin { };
|
||||
lxqt-session = callPackage ./core/lxqt-session { };
|
||||
lxqt-sudo = callPackage ./core/lxqt-sudo { };
|
||||
lxqt-themes = callPackage ./core/lxqt-themes { };
|
||||
pavucontrol-qt = callPackage ./core/pavucontrol-qt { };
|
||||
qtermwidget = callPackage ./core/qtermwidget { };
|
||||
|
||||
|
@ -95,6 +96,7 @@ let
|
|||
lxqt-qtplugin
|
||||
lxqt-session
|
||||
lxqt-sudo
|
||||
lxqt-themes
|
||||
pavucontrol-qt
|
||||
|
||||
### CORE 2
|
||||
|
|
Loading…
Reference in New Issue