summary refs log tree commit diff
path: root/pkgs/games/vdrift
diff options
context:
space:
mode:
authorFelix Bühler <Stunkymonkey@users.noreply.github.com>2021-11-10 22:21:47 +0100
committerGitHub <noreply@github.com>2021-11-10 16:21:47 -0500
commitf5c12e831178d43db794b78c52c87fca83288d21 (patch)
tree4d5960df67349f0b5c7ab94120f3022967c722c2 /pkgs/games/vdrift
parentd4554c23a81ad967088ef82ca90b2a5488ef442b (diff)
downloadnixpkgs-f5c12e831178d43db794b78c52c87fca83288d21.tar
nixpkgs-f5c12e831178d43db794b78c52c87fca83288d21.tar.gz
nixpkgs-f5c12e831178d43db794b78c52c87fca83288d21.tar.bz2
nixpkgs-f5c12e831178d43db794b78c52c87fca83288d21.tar.lz
nixpkgs-f5c12e831178d43db794b78c52c87fca83288d21.tar.xz
nixpkgs-f5c12e831178d43db794b78c52c87fca83288d21.tar.zst
nixpkgs-f5c12e831178d43db794b78c52c87fca83288d21.zip
treewide: replace '-git' packages with 'unstable-' in version (#145396)
Diffstat (limited to 'pkgs/games/vdrift')
-rw-r--r--pkgs/games/vdrift/default.nix23
1 files changed, 18 insertions, 5 deletions
diff --git a/pkgs/games/vdrift/default.nix b/pkgs/games/vdrift/default.nix
index 407603687ba..04f65cf7937 100644
--- a/pkgs/games/vdrift/default.nix
+++ b/pkgs/games/vdrift/default.nix
@@ -1,5 +1,18 @@
-{ lib, stdenv, fetchFromGitHub, fetchsvn, pkg-config, sconsPackages, libGLU, libGL, SDL2, SDL2_image
-, libvorbis, bullet, curl, gettext, writeTextFile
+{ lib
+, stdenv
+, fetchFromGitHub
+, fetchsvn
+, pkg-config
+, sconsPackages
+, libGLU
+, libGL
+, SDL2
+, SDL2_image
+, libvorbis
+, bullet
+, curl
+, gettext
+, writeTextFile
 
 , data ? fetchsvn {
     url = "svn://svn.code.sf.net/p/vdrift/code/vdrift-data";
@@ -8,7 +21,7 @@
   }
 }:
 let
-  version = "git";
+  version = "unstable-2017-12-09";
   bin = stdenv.mkDerivation {
     pname = "vdrift";
     inherit version;
@@ -36,7 +49,7 @@ let
       description = "Car racing game";
       homepage = "http://vdrift.net/";
       license = lib.licenses.gpl2Plus;
-      maintainers = with lib.maintainers; [viric];
+      maintainers = with lib.maintainers; [ viric ];
       platforms = lib.platforms.linux;
     };
   };
@@ -54,7 +67,7 @@ in writeTextFile {
   '';
 } // {
   meta = bin.meta // {
-    hydraPlatforms = [];
+    hydraPlatforms = [ ];
   };
   unwrapped = bin;
   inherit bin data;