1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #301343 from Luz/librepcb

librepcb: 1.0.0 -> 1.1.0
This commit is contained in:
Weijia Wang 2024-04-04 01:50:31 +02:00 committed by GitHub
commit 8c1f22b6c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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";