summary refs log tree commit diff
path: root/pkgs/games/gnome-hexgl
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-09-09 13:51:05 +0200
committerJan Tojnar <jtojnar@gmail.com>2019-09-09 14:02:09 +0200
commit16203d6a8b9b997965fffaf5990232336c9fa12b (patch)
treea0e0bc0290751ee1dd55f865cb0d20c4afc29197 /pkgs/games/gnome-hexgl
parent5fe42dde52368357b30b6eeef3683b82c96ea239 (diff)
downloadnixpkgs-16203d6a8b9b997965fffaf5990232336c9fa12b.tar
nixpkgs-16203d6a8b9b997965fffaf5990232336c9fa12b.tar.gz
nixpkgs-16203d6a8b9b997965fffaf5990232336c9fa12b.tar.bz2
nixpkgs-16203d6a8b9b997965fffaf5990232336c9fa12b.tar.lz
nixpkgs-16203d6a8b9b997965fffaf5990232336c9fa12b.tar.xz
nixpkgs-16203d6a8b9b997965fffaf5990232336c9fa12b.tar.zst
nixpkgs-16203d6a8b9b997965fffaf5990232336c9fa12b.zip
gnome-hexgl: unstable-2019-08-21 → 0.2.0
https://github.com/alexlarsson/gnome-hexgl/releases/tag/0.2.0
Diffstat (limited to 'pkgs/games/gnome-hexgl')
-rw-r--r--pkgs/games/gnome-hexgl/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/games/gnome-hexgl/default.nix b/pkgs/games/gnome-hexgl/default.nix
index 340dd20aaaf..6212c1bbec1 100644
--- a/pkgs/games/gnome-hexgl/default.nix
+++ b/pkgs/games/gnome-hexgl/default.nix
@@ -9,15 +9,15 @@
 , gtk3
 }:
 
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   pname = "gnome-hexgl";
-  version = "unstable-2019-08-21";
+  version = "0.2.0";
 
   src = fetchFromGitHub {
     owner = "alexlarsson";
     repo = "gnome-hexgl";
-    rev = "c6edde1250b830c7c8ee738905cb39abef67d4a6";
-    sha256 = "17j236damqij8n4a37psvkfxbbc18yw03s3hs0qxgfhl4671wf6z";
+    rev = version;
+    sha256 = "08iy2iciscd2wbhh6v4cpghx8r94v1ffbgla9yb3bcsdhlag0iw4";
   };
 
   nativeBuildInputs = [
@@ -35,7 +35,7 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     description = "Gthree port of HexGL";
-    homepage = https://github.com/alexlarsson/gnome-hexgl;
+    homepage = "https://github.com/alexlarsson/gnome-hexgl";
     license = licenses.mit;
     maintainers = with maintainers; [ jtojnar ];
     platforms = platforms.unix;