mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
termite: fix fonts in wayland
This commit is contained in:
parent
116c34a748
commit
42dcf914d1
1 changed files with 5 additions and 0 deletions
|
@ -19,6 +19,8 @@ let
|
|||
|
||||
buildInputs = [ pkgconfig vte gtk3 ncurses ];
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
outputs = [ "out" "terminfo" ];
|
||||
|
||||
postInstall = ''
|
||||
|
@ -27,6 +29,9 @@ let
|
|||
|
||||
mkdir -p $out/nix-support
|
||||
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
|
||||
|
||||
wrapProgram $out/bin/termite \
|
||||
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue