nixpkgs/pkgs/development/libraries/qgnomeplatform/default.nix

69 lines
1.4 KiB
Nix
Raw Normal View History

{ mkDerivation
, lib
, fetchFromGitHub
, nix-update-script
, pkgconfig
, gtk3
, glib
, qtbase
, qmake
, qtx11extras
, pantheon
, substituteAll
, gsettings-desktop-schemas
}:
2018-09-25 00:07:51 +01:00
2019-08-04 08:39:20 +01:00
mkDerivation rec {
pname = "qgnomeplatform";
2020-05-20 00:00:37 +01:00
version = "0.6.1";
2018-09-25 00:07:51 +01:00
src = fetchFromGitHub {
owner = "FedoraQt";
repo = "QGnomePlatform";
rev = version;
2020-05-20 00:00:37 +01:00
sha256 = "1mwqg2zk0sfjq54vz2jjahbgi5sxw8rb71h6mgg459wp99mhlqi0";
2018-09-25 00:07:51 +01:00
};
patches = [
# Hardcode GSettings schema path to avoid crashes from missing schemas
(substituteAll {
src = ./hardcode-gsettings.patch;
gds_gsettings_path = glib.getSchemaPath gsettings-desktop-schemas;
})
];
2018-09-25 00:07:51 +01:00
nativeBuildInputs = [
pkgconfig
qmake
];
buildInputs = [
glib
2018-09-25 00:07:51 +01:00
gtk3
qtbase
2019-11-20 10:48:30 +00:00
qtx11extras
2018-09-25 00:07:51 +01:00
];
postPatch = ''
# Fix plugin dir
2019-11-20 10:48:30 +00:00
substituteInPlace decoration/decoration.pro \
--replace "\$\$[QT_INSTALL_PLUGINS]" "$out/$qtPluginPrefix"
substituteInPlace theme/theme.pro \
2018-09-25 00:07:51 +01:00
--replace "\$\$[QT_INSTALL_PLUGINS]" "$out/$qtPluginPrefix"
'';
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = nix-update-script {
2019-12-22 23:19:30 +00:00
attrPath = pname;
};
};
2019-08-04 08:39:20 +01:00
meta = with lib; {
2018-09-25 00:07:51 +01:00
description = "QPlatformTheme for a better Qt application inclusion in GNOME";
homepage = "https://github.com/FedoraQt/QGnomePlatform";
2018-09-25 00:07:51 +01:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.linux;
};
}