Fixing the gtk attach file dialog for pond.
I forgot to wrap the programs for the proper XDG_DATA_DIRS. Thanks Lethalman! (cherry picked from commit 0eb404129f8a0ae2dca7b3c53699f689e0343b65)
This commit is contained in:
parent
a8d2f2dfcd
commit
4760b6ea6d
1 changed files with 4 additions and 3 deletions
|
@ -1163,7 +1163,8 @@ let
|
||||||
rm -R example gtksourceview
|
rm -R example gtksourceview
|
||||||
'';
|
'';
|
||||||
nativeBuildInputs = [ pkgs.pkgconfig ];
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
||||||
buildInputs = [ pkgs.gtk3 pkgs.gtkspell3 ];
|
propagatedBuildInputs = [ pkgs.gtk3 ];
|
||||||
|
buildInputs = [ pkgs.gtkspell3 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
go-gypsy = buildFromGitHub {
|
go-gypsy = buildFromGitHub {
|
||||||
|
@ -2153,9 +2154,9 @@ let
|
||||||
repo = "pond";
|
repo = "pond";
|
||||||
sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4";
|
sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4";
|
||||||
|
|
||||||
buildInputs = [ net crypto protobuf ed25519 pkgs.trousers go-gtk-agl ]
|
buildInputs = [ net crypto protobuf ed25519 pkgs.trousers ]
|
||||||
++ stdenv.lib.optional isx86_64 pkgs.dclxvi
|
++ stdenv.lib.optional isx86_64 pkgs.dclxvi
|
||||||
++ stdenv.lib.optional gui go-gtk-agl;
|
++ stdenv.lib.optionals gui [ go-gtk-agl pkgs.wrapGAppsHook ];
|
||||||
buildFlags = stdenv.lib.optionalString (!gui) "-tags nogui";
|
buildFlags = stdenv.lib.optionalString (!gui) "-tags nogui";
|
||||||
excludedPackages = "\\(appengine\\|bn256cgo\\)";
|
excludedPackages = "\\(appengine\\|bn256cgo\\)";
|
||||||
postPatch = stdenv.lib.optionalString isx86_64 ''
|
postPatch = stdenv.lib.optionalString isx86_64 ''
|
||||||
|
|
Loading…
Reference in a new issue