summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-09-03 16:38:19 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-09-03 16:38:19 +0100
commit4b10de818280f0d8feeafeaf4c150fcbacefba17 (patch)
tree18ba744a1c90fdb6ad2be6fbb03e7d7e15a7a159 /pkgs/misc
parent7d54467ad0fbe16f2ef9690a13e77631471d5e15 (diff)
downloadnixpkgs-4b10de818280f0d8feeafeaf4c150fcbacefba17.tar
nixpkgs-4b10de818280f0d8feeafeaf4c150fcbacefba17.tar.gz
nixpkgs-4b10de818280f0d8feeafeaf4c150fcbacefba17.tar.bz2
nixpkgs-4b10de818280f0d8feeafeaf4c150fcbacefba17.tar.lz
nixpkgs-4b10de818280f0d8feeafeaf4c150fcbacefba17.tar.xz
nixpkgs-4b10de818280f0d8feeafeaf4c150fcbacefba17.tar.zst
nixpkgs-4b10de818280f0d8feeafeaf4c150fcbacefba17.zip
nestopia: fix icon theme
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/emulators/nestopia/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/misc/emulators/nestopia/default.nix b/pkgs/misc/emulators/nestopia/default.nix
index 1da4b040a75..ef4485ef33f 100644
--- a/pkgs/misc/emulators/nestopia/default.nix
+++ b/pkgs/misc/emulators/nestopia/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, SDL2, alsaLib, gtk3, mesa_glu,
-  makeWrapper, mesa, libarchive, libao, unzip, xdg_utils, gsettings_desktop_schemas,
-  epoxy, gdk_pixbuf
+{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, SDL2, alsaLib, gtk3, mesa_glu
+, makeWrapper, mesa, libarchive, libao, unzip, xdg_utils, gsettings_desktop_schemas
+, epoxy, gdk_pixbuf, gnome3, wrapGAppsHook
 }:
 
 stdenv.mkDerivation rec {
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
   hardeningDisable = [ "format" ];
 
   buildInputs = [
-    pkgconfig
     SDL2
     alsaLib
     epoxy
@@ -28,12 +27,17 @@ stdenv.mkDerivation rec {
     gdk_pixbuf
     mesa_glu
     mesa
-    makeWrapper
     libarchive
     libao
     unzip
     xdg_utils
-    gsettings_desktop_schemas
+    gnome3.adwaita-icon-theme
+  ];
+
+  nativeBuildInputs = [
+    pkgconfig
+    makeWrapper
+    wrapGAppsHook
   ];
 
   installPhase = ''