tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
librepcb: 1.0.0 -> 1.1.0
Luz
2 years ago
a772d1f6
0e13253d
+3
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
electronics
librepcb
default.nix
+3
-4
pkgs/applications/science/electronics/librepcb/default.nix
···
1
1
{ stdenv, lib, fetchFromGitHub
2
2
-
, qtbase, qttools, qtquickcontrols2, opencascade-occt, libGLU, libSM, freeimage, cmake, wrapQtAppsHook
2
2
+
, qtbase, qttools, qtquickcontrols2, opencascade-occt, libGLU, cmake, wrapQtAppsHook
3
3
}:
4
4
5
5
stdenv.mkDerivation rec {
6
6
pname = "librepcb";
7
7
-
version = "1.0.0";
7
7
+
version = "1.1.0";
8
8
9
9
src = fetchFromGitHub {
10
10
owner = pname;
11
11
repo = pname;
12
12
rev = version;
13
13
-
sha256 = "sha256-2o2Gue/RnDWxe8jk/Ehx9CM+B3ac5rEQn0H7yodUEZ8=";
13
13
+
sha256 = "sha256-Vyp7asVqvKFkkEb67LXapMkT1AQSburN3+B2dXIPcEU=";
14
14
fetchSubmodules = true;
15
15
};
16
16
17
17
nativeBuildInputs = [ cmake qttools wrapQtAppsHook qtquickcontrols2 opencascade-occt libGLU ];
18
18
buildInputs = [ qtbase ];
19
19
-
propagatedBuildInputs = [ libSM freeimage ];
20
19
21
20
meta = with lib; {
22
21
description = "A free EDA software to develop printed circuit boards";