librepcb: Fix platform plugin xcb not found
This commit is contained in:
parent
f498ceb6f2
commit
2d4ee40176
|
@ -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 ];
|
||||
|
|
Loading…
Reference in New Issue