python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / klayout / default.nix
blob3ab41da3545273201338ea95a1a0c1c6a6669f95
1 { lib, mkDerivation, fetchFromGitHub
2 , python3, ruby, qtbase, qtmultimedia, qttools, qtxmlpatterns
3 , which, perl
4 }:
6 mkDerivation rec {
7   pname = "klayout";
8   version = "0.27.11";
10   src = fetchFromGitHub {
11     owner = "KLayout";
12     repo = "klayout";
13     rev = "v${version}";
14     hash = "sha256-w3ag+TPUrjPbPIy6N4HPsfraOyoHqBbvjwB1M6+qh60=";
15   };
17   postPatch = ''
18     substituteInPlace src/klayout.pri --replace "-Wno-reserved-user-defined-literal" ""
19     patchShebangs .
20   '';
22   nativeBuildInputs = [
23     which
24     perl
25     python3
26     ruby
27   ];
29   buildInputs = [
30     qtbase
31     qtmultimedia
32     qttools
33     qtxmlpatterns
34   ];
36   buildPhase = ''
37     runHook preBuild
38     mkdir -p $out/lib
39     ./build.sh -qt5 -prefix $out/lib -option -j$NIX_BUILD_CORES
40     runHook postBuild
41   '';
43   postBuild = ''
44     mkdir $out/bin
45     mv $out/lib/klayout $out/bin/
46   '';
48   NIX_CFLAGS_COMPILE = [ "-Wno-parentheses" ];
50   dontInstall = true; # Installation already happens as part of "build.sh"
52   # Fix: "gsiDeclQMessageLogger.cc:126:42: error: format not a string literal
53   # and no format arguments [-Werror=format-security]"
54   hardeningDisable = [ "format" ];
56   meta = with lib; {
57     description = "High performance layout viewer and editor with support for GDS and OASIS";
58     license = with licenses; [ gpl2Plus ];
59     homepage = "https://www.klayout.de/";
60     changelog = "https://www.klayout.de/development.html#${version}";
61     platforms = platforms.linux;
62     maintainers = with maintainers; [ knedlsepp ];
63   };