Merge pull request #79301 from Abdillah/patch-2

librepcb: Fix platform plugin xcb not found
This commit is contained in:
Dmitry Kalinkin 2020-02-09 00:28:49 -05:00 committed by GitHub
commit 1872e69450
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, qtbase, qttools, qmake, wrapQtAppsHook }:
{ lib, mkDerivation, fetchFromGitHub, qtbase, qttools, qmake, wrapQtAppsHook }:
stdenv.mkDerivation {
mkDerivation {
pname = "librepcb";
version = "0.1.2";
@ -29,7 +29,7 @@ stdenv.mkDerivation {
wrapQtApp $out/bin/librepcb
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "A free EDA software to develop printed circuit boards";
homepage = https://librepcb.org/;
maintainers = with maintainers; [ luz ];