summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators/foot/default.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-02 17:49:01 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-25 19:23:32 +0200
commit5e90cb8800ef5fb24b3c2fccb4aecfcbc1926cb0 (patch)
treed7a791c55d0c310934f6d27a9ef2000229bcd831 /pkgs/applications/terminal-emulators/foot/default.nix
parent4c10d0da45b1d5d0dcaf4342fd221f77c2d5705d (diff)
downloadnixpkgs-5e90cb8800ef5fb24b3c2fccb4aecfcbc1926cb0.tar
nixpkgs-5e90cb8800ef5fb24b3c2fccb4aecfcbc1926cb0.tar.gz
nixpkgs-5e90cb8800ef5fb24b3c2fccb4aecfcbc1926cb0.tar.bz2
nixpkgs-5e90cb8800ef5fb24b3c2fccb4aecfcbc1926cb0.tar.lz
nixpkgs-5e90cb8800ef5fb24b3c2fccb4aecfcbc1926cb0.tar.xz
nixpkgs-5e90cb8800ef5fb24b3c2fccb4aecfcbc1926cb0.tar.zst
nixpkgs-5e90cb8800ef5fb24b3c2fccb4aecfcbc1926cb0.zip
foot: install terminfo to separate output
* See also https://codeberg.org/dnkl/foot/pulls/607

* propagated-user-env-packages is undocumented unfortunately, but
  ensure that if you add foot(.out) to your `systemPackages` or
  install it via `nix-env`, the terminfo output is also  installed
  automatically.

* Resolves #125390.
Diffstat (limited to 'pkgs/applications/terminal-emulators/foot/default.nix')
-rw-r--r--pkgs/applications/terminal-emulators/foot/default.nix15
1 files changed, 14 insertions, 1 deletions
diff --git a/pkgs/applications/terminal-emulators/foot/default.nix b/pkgs/applications/terminal-emulators/foot/default.nix
index 6667b309d1b..f69625e16cd 100644
--- a/pkgs/applications/terminal-emulators/foot/default.nix
+++ b/pkgs/applications/terminal-emulators/foot/default.nix
@@ -131,7 +131,11 @@ stdenv.mkDerivation rec {
     export AR="${ar}"
   '';
 
-  mesonFlags = [ "--buildtype=release" "-Db_lto=true" ];
+  mesonFlags = [
+    "--buildtype=release"
+    "-Db_lto=true"
+    "-Dterminfo-install-location=${placeholder "terminfo"}/share/terminfo"
+  ];
 
   # build and run binary generating PGO profiles,
   # then reconfigure to build the normal foot binary utilizing PGO
@@ -148,6 +152,15 @@ stdenv.mkDerivation rec {
     llvm-profdata merge default_*profraw --output=default.profdata
   '';
 
+  outputs = [ "out" "terminfo" ];
+
+  # make sure nix-env and buildEnv also include the
+  # terminfo output when the package is installed
+  postInstall = ''
+    mkdir -p "$out/nix-support"
+    echo "$terminfo" >> "$out/nix-support/propagated-user-env-packages"
+  '';
+
   passthru.tests = {
     clang-default-compilation = foot.override {
       inherit (llvmPackages) stdenv;