aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/science/electronics/librepcb/default.nix
blob: 4b0a4108ab22beb7b89333a4a795d07ba4236663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ stdenv, lib, fetchFromGitHub
, qtbase, qttools, qmake, wrapQtAppsHook
}:

stdenv.mkDerivation rec {
  pname = "librepcb";
  version = "0.1.5";

  src = fetchFromGitHub {
    owner  = pname;
    repo   = pname;
    rev    = version;
    sha256 = "0ag8h3id2c1k9ds22rfrvyhf2vjhkv82xnrdrz4n1hnlr9566vcx";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [ qmake qttools wrapQtAppsHook ];
  buildInputs = [ qtbase ];

  qmakeFlags = ["-r"];
  enableParallelBuilding = true;

  postInstall = ''
    mkdir -p $out/share/librepcb/fontobene
    cp share/librepcb/fontobene/newstroke.bene $out/share/librepcb/fontobene/
  '';

  # the build system tries to use 'git' at build time to find the HEAD hash.
  # that's a no-no, so replace it with a quick hack. NOTE: the # adds a comment
  # at the end of the line to remove the git call.
  patchPhase = ''
    substituteInPlace ./libs/librepcb/common/common.pro \
      --replace 'GIT_COMMIT_SHA' 'GIT_COMMIT_SHA="\\\"${src.rev}\\\"" # '
  '';

  preFixup = ''
    wrapQtApp $out/bin/librepcb
  '';

  meta = with stdenv.lib; {
    description = "A free EDA software to develop printed circuit boards";
    homepage    = "https://librepcb.org/";
    maintainers = with maintainers; [ luz thoughtpolice ];
    license     = licenses.gpl3;
    platforms   = platforms.linux;
  };
}