summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2020-01-09 14:09:12 +0100
committerMatthieu Coudron <mattator@gmail.com>2020-01-12 13:57:01 +0100
commit502c16e591fbd70a1398704f422e68a51d6dc0ab (patch)
tree435b4ae779832a1887dd932d7f3129fa73851569 /pkgs/games
parenta9d3d63eaae778aa8b32c609b09e3f7bf9a9a7df (diff)
downloadnixpkgs-502c16e591fbd70a1398704f422e68a51d6dc0ab.tar
nixpkgs-502c16e591fbd70a1398704f422e68a51d6dc0ab.tar.gz
nixpkgs-502c16e591fbd70a1398704f422e68a51d6dc0ab.tar.bz2
nixpkgs-502c16e591fbd70a1398704f422e68a51d6dc0ab.tar.lz
nixpkgs-502c16e591fbd70a1398704f422e68a51d6dc0ab.tar.xz
nixpkgs-502c16e591fbd70a1398704f422e68a51d6dc0ab.tar.zst
nixpkgs-502c16e591fbd70a1398704f422e68a51d6dc0ab.zip
ultrastardx: 2017.8.0 -> 2019-01-07
follow up of the fix provided in https://github.com/UltraStar-Deluxe/USDX/issues/462
to use pkg-config to find lua.
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/ultrastardx/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/games/ultrastardx/default.nix b/pkgs/games/ultrastardx/default.nix
index 1c40d8f5800..feaf6cabf32 100644
--- a/pkgs/games/ultrastardx/default.nix
+++ b/pkgs/games/ultrastardx/default.nix
@@ -12,21 +12,19 @@ let
 
 in stdenv.mkDerivation rec {
   pname = "ultrastardx";
-  version = "2017.8.0";
+  version = "unstable-2019-01-07";
   src = fetchFromGitHub {
     owner = "UltraStar-Deluxe";
     repo = "USDX";
-    rev = "v${version}";
-    sha256 = "1zp0xfwzci3cjmwx3cprcxvm60cik5cvhvrz9n4d6yb8dv38nqzm";
+    rev = "3df142590f29db1505cc58746af9f8cf7cb4a6a5";
+    sha256 = "EpwGKK9B8seF7gRwo3kCeSzFQQW1p8rP4HXeu8/LoyA=";
   };
 
   nativeBuildInputs = [ pkgconfig autoreconfHook ];
   buildInputs = [ fpc libpng ] ++ sharedLibs;
 
-  # https://github.com/UltraStar-Deluxe/USDX/issues/462
   postPatch = ''
     substituteInPlace src/config.inc.in \
-      --subst-var-by lua_LIB_NAME liblua.so \
       --subst-var-by libpcre_LIBNAME libpcre.so.1
   '';