python312Packages.powerfox: init at 1.1.0 (#371207)
[NixPkgs.git] / pkgs / tools / misc / coreboot-configurator / default.nix
blobd8e322421c75e145de6cfd4cb81175b93f0b021a
1 { lib
2 , fetchFromGitHub
3 , inkscape
4 , meson
5 , mkDerivation
6 , ninja
7   # We will resolve pkexec from the path because it has a setuid wrapper on
8   # NixOS meaning that we cannot just use the path from the nix store.
9   # Using the path to the wrapper here would make the package incompatible
10   # with non-NixOS systems.
11 , pkexecPath ? "pkexec"
12 , pkg-config
13 , yaml-cpp
14 , nvramtool
15 , systemd
16 , qtbase
17 , qtsvg
18 , wrapQtAppsHook
21 mkDerivation {
22   pname = "coreboot-configurator";
23   version = "unstable-2023-01-17";
25   src = fetchFromGitHub {
26     owner = "StarLabsLtd";
27     repo = "coreboot-configurator";
28     rev = "944b575dc873c78627c352f9c1a1493981431a58";
29     sha256 = "sha256-ReWQNzeoyTF66hVnevf6Kkrnt0/PqRHd3oyyPYtx+0M=";
30   };
32   nativeBuildInputs = [ inkscape meson ninja pkg-config wrapQtAppsHook ];
33   buildInputs = [ yaml-cpp qtbase qtsvg ];
35   postPatch = ''
36     substituteInPlace src/application/*.cpp \
37       --replace '/usr/bin/pkexec' '${pkexecPath}' \
38       --replace '/usr/bin/systemctl' '${lib.getBin systemd}/systemctl' \
39       --replace '/usr/sbin/nvramtool' '${lib.getExe nvramtool}'
41     substituteInPlace src/resources/org.coreboot.nvramtool.policy \
42       --replace '/usr/sbin/nvramtool' '${lib.getExe nvramtool}'
44     substituteInPlace src/resources/org.coreboot.reboot.policy \
45       --replace '/usr/sbin/reboot' '${lib.getBin systemd}/reboot'
46   '';
48   postFixup = ''
49     substituteInPlace $out/share/applications/coreboot-configurator.desktop \
50       --replace '/usr/bin/coreboot-configurator' 'coreboot-configurator'
51   '';
53   meta = with lib; {
54     description = "Simple GUI to change settings in Coreboot's CBFS";
55     homepage = "https://support.starlabs.systems/kb/guides/coreboot-configurator";
56     license = licenses.gpl2Only;
57     platforms = platforms.linux;
58     maintainers = with maintainers; [ danth ];
59     mainProgram = "coreboot-configurator";
60   };