adwaita-qt: 1.0 -> 1.1.0

Adds support for the new refreshed Adwaita theme.

https://github.com/FedoraQt/adwaita-qt/releases/tag/1.1.0
This commit is contained in:
worldofpeace 2019-08-04 03:37:07 -04:00
parent 08ea10ad40
commit e62be3ebf0

View File

@ -1,16 +1,14 @@
{ stdenv, fetchFromGitHub, cmake, ninja, qtbase }: { mkDerivation, lib, fetchFromGitHub, cmake, ninja, qtbase }:
stdenv.mkDerivation rec { mkDerivation rec {
pname = "adwaita-qt"; pname = "adwaita-qt";
version = "1.0"; version = "1.1.0";
name = "${pname}-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "FedoraQt"; owner = "FedoraQt";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0xn8bianmdj15k11mnw52by9vxkmvpqr2s304kl3dbjj1l7v4cd7"; sha256 = "1jlh4l3sxiwglgx6h4aqi364gr4xipmn09bk88cp997r9sm8jcp9";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -28,7 +26,7 @@ stdenv.mkDerivation rec {
--replace "DESTINATION \"\''${QT_PLUGINS_DIR}/styles" "DESTINATION \"$qtPluginPrefix/styles" --replace "DESTINATION \"\''${QT_PLUGINS_DIR}/styles" "DESTINATION \"$qtPluginPrefix/styles"
''; '';
meta = with stdenv.lib; { meta = with lib; {
description = "A style to bend Qt applications to look like they belong into GNOME Shell"; description = "A style to bend Qt applications to look like they belong into GNOME Shell";
homepage = https://github.com/FedoraQt/adwaita-qt; homepage = https://github.com/FedoraQt/adwaita-qt;
license = licenses.gpl2Plus; license = licenses.gpl2Plus;