Merge pull request #65543 from peterzky/qt5ct

qt5ct: use Qt mkDerivation
This commit is contained in:
worldofpeace 2019-07-29 01:53:29 -04:00 committed by GitHub
commit 218bde435b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,8 @@
{ stdenv, fetchurl, qtbase, qttools, qmake }:
{ mkDerivation, lib, fetchurl, qtbase, qttools, qmake }:
let inherit (stdenv.lib) getDev; in
let inherit (lib) getDev; in
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "qt5ct";
version = "0.39";
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with stdenv.lib; {
meta = with lib; {
description = "Qt5 Configuration Tool";
homepage = https://www.opendesktop.org/content/show.php?content=168066;
platforms = platforms.linux;