1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

qgnomeplatform: correct qt packaging

This commit is contained in:
worldofpeace 2019-08-04 03:39:20 -04:00
parent e62be3ebf0
commit 327a4d5879

View file

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pkgconfig, gtk3, qtbase, qmake }:
{ mkDerivation, lib, fetchFromGitHub, pkgconfig, gtk3, qtbase, qmake }:
stdenv.mkDerivation rec {
name = "qgnomeplatform-${version}";
mkDerivation rec {
pname = "qgnomeplatform";
version = "0.5";
src = fetchFromGitHub {
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
--replace "\$\$[QT_INSTALL_PLUGINS]" "$out/$qtPluginPrefix"
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "QPlatformTheme for a better Qt application inclusion in GNOME";
homepage = https://github.com/FedoraQt/QGnomePlatform;
license = licenses.lgpl21Plus;