summary refs log tree commit diff
path: root/pkgs/applications/graphics/ahoviewer/default.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2018-03-14 18:57:28 -0400
committerGitHub <noreply@github.com>2018-03-14 18:57:28 -0400
commit2e87550acedb96e6cad4967749c60a96718ee04b (patch)
treeb349886745c3b4e9637891dc2d8cb5b3493a28e3 /pkgs/applications/graphics/ahoviewer/default.nix
parentd78a411d98685cc7f918908187068b742183109b (diff)
parentf79f80dbf267036a96f8eae281c8501482756d03 (diff)
downloadnixlib-2e87550acedb96e6cad4967749c60a96718ee04b.tar
nixlib-2e87550acedb96e6cad4967749c60a96718ee04b.tar.gz
nixlib-2e87550acedb96e6cad4967749c60a96718ee04b.tar.bz2
nixlib-2e87550acedb96e6cad4967749c60a96718ee04b.tar.lz
nixlib-2e87550acedb96e6cad4967749c60a96718ee04b.tar.xz
nixlib-2e87550acedb96e6cad4967749c60a96718ee04b.tar.zst
nixlib-2e87550acedb96e6cad4967749c60a96718ee04b.zip
Merge pull request #36985 from obsidiansystems/no-allBut
treewide: get rid of platforms.allBut
Diffstat (limited to 'pkgs/applications/graphics/ahoviewer/default.nix')
-rw-r--r--pkgs/applications/graphics/ahoviewer/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/ahoviewer/default.nix b/pkgs/applications/graphics/ahoviewer/default.nix
index 2d42a479999b..b7647803b3d3 100644
--- a/pkgs/applications/graphics/ahoviewer/default.nix
+++ b/pkgs/applications/graphics/ahoviewer/default.nix
@@ -37,7 +37,9 @@ stdenv.mkDerivation rec {
     description = "A GTK2 image viewer, manga reader, and booru browser";
     maintainers = with maintainers; [ skrzyp xzfc ];
     license = licenses.mit;
-    platforms = platforms.allBut [ "darwin" "cygwin" ];
+    # Unintentionally not working on Darwin:
+    # https://github.com/ahodesuka/ahoviewer/issues/62
+    platforms = platforms.linux;
   };
 }