summary refs log tree commit diff
path: root/pkgs/applications/graphics/goxel/default.nix
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-10-13 07:41:54 -0700
committerRenaud <c0bw3b@users.noreply.github.com>2018-10-13 16:41:54 +0200
commit49284e4a00a1b8a93d1ae93896f3856c98f5f266 (patch)
tree5b18b9839ba149bba49983e71cfa37d1acef3775 /pkgs/applications/graphics/goxel/default.nix
parent3712da10d4fcb79857dac72228c6218119f96571 (diff)
downloadnixpkgs-49284e4a00a1b8a93d1ae93896f3856c98f5f266.tar
nixpkgs-49284e4a00a1b8a93d1ae93896f3856c98f5f266.tar.gz
nixpkgs-49284e4a00a1b8a93d1ae93896f3856c98f5f266.tar.bz2
nixpkgs-49284e4a00a1b8a93d1ae93896f3856c98f5f266.tar.lz
nixpkgs-49284e4a00a1b8a93d1ae93896f3856c98f5f266.tar.xz
nixpkgs-49284e4a00a1b8a93d1ae93896f3856c98f5f266.tar.zst
nixpkgs-49284e4a00a1b8a93d1ae93896f3856c98f5f266.zip
goxel: 0.8.0 -> 0.8.1 (#47789)
* goxel: 0.8.0 -> 0.8.1

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/goxel/versions

* goxel: build only on x86_64-linux
Diffstat (limited to 'pkgs/applications/graphics/goxel/default.nix')
-rw-r--r--pkgs/applications/graphics/goxel/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/goxel/default.nix b/pkgs/applications/graphics/goxel/default.nix
index 99230eb23e3..27dd37d1803 100644
--- a/pkgs/applications/graphics/goxel/default.nix
+++ b/pkgs/applications/graphics/goxel/default.nix
@@ -3,13 +3,13 @@
 
 stdenv.mkDerivation rec {
   name = "goxel-${version}";
-  version = "0.8.0";
+  version = "0.8.1";
 
   src = fetchFromGitHub {
     owner = "guillaumechereau";
     repo = "goxel";
     rev = "v${version}";
-    sha256 = "01022c43pmwiqb18rx9fz08xr99h6p03gw6bp0lay5z61g3xkz17";
+    sha256 = "0g6jkihjmsx6lyfl301qrq26gwvq89sk7xkkba6vrpklfs2jafkb";
   };
 
   patches = [ ./disable-imgui_ini.patch ];
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
     description = "Open Source 3D voxel editor";
     homepage = https://guillaumechereau.github.io/goxel/;
     license = licenses.gpl3;
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" ]; # see https://github.com/guillaumechereau/goxel/issues/125
     maintainers = with maintainers; [ tilpner ];
   };
 }