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
{ stdenv, lib, fetchFromGitHub
2
-
, qtbase, qttools, qtquickcontrols2, opencascade-occt, libGLU, libSM, freeimage, cmake, wrapQtAppsHook
3
}:
4
5
stdenv.mkDerivation rec {
6
pname = "librepcb";
7
-
version = "1.0.0";
8
9
src = fetchFromGitHub {
10
owner = pname;
11
repo = pname;
12
rev = version;
13
-
sha256 = "sha256-2o2Gue/RnDWxe8jk/Ehx9CM+B3ac5rEQn0H7yodUEZ8=";
14
fetchSubmodules = true;
15
};
16
17
nativeBuildInputs = [ cmake qttools wrapQtAppsHook qtquickcontrols2 opencascade-occt libGLU ];
18
buildInputs = [ qtbase ];
19
-
propagatedBuildInputs = [ libSM freeimage ];
20
21
meta = with lib; {
22
description = "A free EDA software to develop printed circuit boards";
···
1
{ stdenv, lib, fetchFromGitHub
2
+
, qtbase, qttools, qtquickcontrols2, opencascade-occt, libGLU, cmake, wrapQtAppsHook
3
}:
4
5
stdenv.mkDerivation rec {
6
pname = "librepcb";
7
+
version = "1.1.0";
8
9
src = fetchFromGitHub {
10
owner = pname;
11
repo = pname;
12
rev = version;
13
+
sha256 = "sha256-Vyp7asVqvKFkkEb67LXapMkT1AQSburN3+B2dXIPcEU=";
14
fetchSubmodules = true;
15
};
16
17
nativeBuildInputs = [ cmake qttools wrapQtAppsHook qtquickcontrols2 opencascade-occt libGLU ];
18
buildInputs = [ qtbase ];
0
19
20
meta = with lib; {
21
description = "A free EDA software to develop printed circuit boards";