librepcb: 1.0.0 -> 1.1.0

This commit is contained in:
Luz 2024-04-03 22:08:08 +02:00
parent 0e13253d52
commit a772d1f6c1

View File

@ -1,22 +1,21 @@
{ stdenv, lib, fetchFromGitHub
, qtbase, qttools, qtquickcontrols2, opencascade-occt, libGLU, libSM, freeimage, cmake, wrapQtAppsHook
, qtbase, qttools, qtquickcontrols2, opencascade-occt, libGLU, cmake, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "librepcb";
version = "1.0.0";
version = "1.1.0";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "sha256-2o2Gue/RnDWxe8jk/Ehx9CM+B3ac5rEQn0H7yodUEZ8=";
sha256 = "sha256-Vyp7asVqvKFkkEb67LXapMkT1AQSburN3+B2dXIPcEU=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake qttools wrapQtAppsHook qtquickcontrols2 opencascade-occt libGLU ];
buildInputs = [ qtbase ];
propagatedBuildInputs = [ libSM freeimage ];
meta = with lib; {
description = "A free EDA software to develop printed circuit boards";