如何在NixOS上安装libgtk2.0-dev?

时间:2019-04-06 08:55:02

标签: gtk2 nix nixos

我正在尝试从以下来源构建此应用程序:https://gitlab.com/TheFrozenWatchers/LeagueDisplays

每当我尝试运行make命令时,它都会失败,并显示'gtk/gtk.h' file not found。是否有一种已知的方法可以在Nix中安装libgtk2.0-dev(我认为这里是问题所在)?

作为参考,我正在使用以下nix-shell自变量:nix-shell -p xorg.libX11 gtk2。我想象gtk2包中不包含libgtk2,但是我不确定如何将正确的标头放入环境中才能正常工作。

1 个答案:

答案 0 :(得分:0)

以下是您可以使用的shell.nix

with import <nixpkgs> {};

stdenv.mkDerivation rec {
  name = "league-displays-${version}";
  version = "master";

  src = ./.;

  doCheck = true;

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ gtk2-x11 clang rapidjson ];

  preBuild = ''
    substituteAllInPlace src/themes_service.h --replace "include/rapidjson/document.h" "rapidjson/document.h"
    substituteInPlace Makefile --replace "pkg-config --libs --cflags gtk+-2.0" "pkg-config --libs --cflags gtk+-2.0 RapidJSON"
  '';
}

输入外壳程序时,请运行make而不是buildPhase。这样,preBuild步骤将运行并应用一些补丁。

尽管我已经考虑了所有已知的依赖关系,但是由于出现了一些特定于应用程序的错误,因此该项目仍然无法构建:

build flags: SHELL=/nix/store/mcyvp1s45scjkkhyb1m16aqlsb8wr6hs-bash-interactive-4.4-p23/bin/bash
clang++ -O3 -g -w -I. -I./src/ -Wl,-rpath,. -L./bin/ -std=c++14 -Wall -lX11 -lXt -lcef -pthread -lrt -lz `pkg-config --libs --cflags gtk+-2.0 RapidJSON` -I./thirdparty/ -c src/background_daemon.cc
src/background_daemon.cc:23:9: error: unknown type name 'AppConfig'
        AppConfig* cfg = AppConfig::Acquire();
        ^
src/background_daemon.cc:23:26: error: use of undeclared identifier 'AppConfig'
        AppConfig* cfg = AppConfig::Acquire();
                         ^
src/background_daemon.cc:26:9: error: use of undeclared identifier 'AppConfig'
        AppConfig::Release();
        ^
src/background_daemon.cc:71:9: error: unknown type name 'AppConfig'
        AppConfig* cfg;
        ^
src/background_daemon.cc:76:19: error: use of undeclared identifier 'AppConfig'
            cfg = AppConfig::Acquire();
                  ^
src/background_daemon.cc:110:37: error: use of undeclared identifier 'fnvHash'
                unsigned int hash = fnvHash(wp.c_str());
                                    ^
src/background_daemon.cc:133:13: error: use of undeclared identifier 'AppConfig'
            AppConfig::Release();
            ^
7 errors generated.
make: *** [Makefile:37: background_daemon.o] Error 1