mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 20:02:14 +03:00
qt5ct: use Qt mkDerivation
This commit is contained in:
parent
9a7492665b
commit
4400f4a515
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user