biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / klayout / default.nix
blob6af515865dbf5b2a50857e09271a56bddb24718e
1 { lib, mkDerivation, fetchFromGitHub
2 , python3, ruby, qtbase, qtmultimedia, qttools, qtxmlpatterns
3 , which, perl, libgit2
4 }:
6 mkDerivation rec {
7   pname = "klayout";
8   version = "0.29.7";
10   src = fetchFromGitHub {
11     owner = "KLayout";
12     repo = "klayout";
13     rev = "v${version}";
14     hash = "sha256-4GjCV/Z9al7Hrj7Ik/EvmLy5jPCsU/3Ti9HwOjzPKYc=";
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     libgit2
35   ];
37   buildPhase = ''
38     runHook preBuild
39     mkdir -p $out/lib
40     ./build.sh -qt5 -prefix $out/lib -option -j$NIX_BUILD_CORES
41     runHook postBuild
42   '';
44   postBuild = ''
45     mkdir $out/bin
46     mv $out/lib/klayout $out/bin/
48     install -Dm444 etc/klayout.desktop -t $out/share/applications
49     install -Dm444 etc/logo.png $out/share/icons/hicolor/256x256/apps/klayout.png
50   '';
52   env.NIX_CFLAGS_COMPILE = toString [ "-Wno-parentheses" ];
54   dontInstall = true; # Installation already happens as part of "build.sh"
56   # Fix: "gsiDeclQMessageLogger.cc:126:42: error: format not a string literal
57   # and no format arguments [-Werror=format-security]"
58   hardeningDisable = [ "format" ];
60   meta = with lib; {
61     description = "High performance layout viewer and editor with support for GDS and OASIS";
62     mainProgram = "klayout";
63     license = with licenses; [ gpl2Plus ];
64     homepage = "https://www.klayout.de/";
65     changelog = "https://www.klayout.de/development.html#${version}";
66     platforms = platforms.linux;
67     maintainers = with maintainers; [ knedlsepp ];
68   };