summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/atom
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-08-05 15:34:55 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-08-05 15:35:35 +0100
commitbb76f9a210fab5422b2d0e01c306369359eddf9a (patch)
treea902792c5088a0b8e0bbca5f0c764a06ddd60302 /pkgs/applications/editors/atom
parent8a9733361e05d162e80d534543bdf79b27036e5e (diff)
atom: gtk3 should be in buildInputs
Diffstat (limited to 'pkgs/applications/editors/atom')
-rw-r--r--pkgs/applications/editors/atom/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix
index 0907c7af27da..bc3f8baf5108 100644
--- a/pkgs/applications/editors/atom/default.nix
+++ b/pkgs/applications/editors/atom/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, pkgs, fetchurl, makeWrapper, wrapGAppsHook, gvfs, atomEnv, gtk3}:
+{ stdenv, pkgs, fetchurl, makeWrapper, wrapGAppsHook, gvfs, gtk3, atomEnv }:
let
common = pname: {version, sha256, beta ? null}:
@@ -16,6 +16,9 @@ let
nativeBuildInputs = [
wrapGAppsHook # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system
+ ];
+
+ buildInputs = [
gtk3 # Fix error: GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed
];