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