qgnomeplatform: init at 0.4
This commit is contained in:
parent
f37b39d279
commit
6793313708
37
pkgs/development/libraries/qgnomeplatform/default.nix
Normal file
37
pkgs/development/libraries/qgnomeplatform/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, gtk3, qtbase, qmake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "qgnomeplatform-${version}";
|
||||||
|
version = "0.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "FedoraQt";
|
||||||
|
repo = "QGnomePlatform";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1403300d435g7ngcxsgnllhryk63nrhl1ahx16b28wkxnh2vi9ly";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
qmake
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
qtbase
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# Fix plugin dir
|
||||||
|
substituteInPlace qgnomeplatform.pro \
|
||||||
|
--replace "\$\$[QT_INSTALL_PLUGINS]" "$out/$qtPluginPrefix"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "QPlatformTheme for a better Qt application inclusion in GNOME";
|
||||||
|
homepage = https://github.com/FedoraQt/QGnomePlatform;
|
||||||
|
license = licenses.lgpl21Plus;
|
||||||
|
maintainers = with maintainers; [ worldofpeace ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -11953,6 +11953,8 @@ with pkgs;
|
|||||||
|
|
||||||
qrupdate = callPackage ../development/libraries/qrupdate { };
|
qrupdate = callPackage ../development/libraries/qrupdate { };
|
||||||
|
|
||||||
|
qgnomeplatform = libsForQt5.callPackage ../development/libraries/qgnomeplatform { };
|
||||||
|
|
||||||
resolv_wrapper = callPackage ../development/libraries/resolv_wrapper { };
|
resolv_wrapper = callPackage ../development/libraries/resolv_wrapper { };
|
||||||
|
|
||||||
rhino = callPackage ../development/libraries/java/rhino {
|
rhino = callPackage ../development/libraries/java/rhino {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user