sdl-jstest: 2016-03-29 -> 2018-06-15

This commit is contained in:
Nikolay Amiantov 2019-06-03 19:31:36 +03:00
parent 5eeb159838
commit 304f0501bf

View file

@ -1,18 +1,18 @@
{ fetchFromGitHub, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }:
{ stdenv, fetchgit, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl, git }:
stdenv.mkDerivation rec {
name = "sdl-jstest-${version}";
version = "2016-03-29";
version = "2018-06-15";
src = fetchFromGitHub {
owner = "Grumbel";
repo = "sdl-jstest";
rev = "301a0e8cf3f96de4c5e58d9fe4413e5cd2b4e6d4";
sha256 = "1qrz09by5snc3n1wppf2y0pj7rx29dlh1g84glga8vvb03n3yb14";
# Submodules
src = fetchgit {
url = "https://github.com/Grumbel/sdl-jstest";
rev = "aafbdb1ed3e687583037ba55ae88b1210d6ce98b";
sha256 = "0p4cjzcq0bbkzad19jwdklylqhq2q390q7dpg8bfzl2rwls883rk";
};
buildInputs = [ SDL SDL2 ncurses ];
nativeBuildInputs = [ cmake pkgconfig docbook_xsl ];
nativeBuildInputs = [ cmake pkgconfig docbook_xsl git ];
meta = with stdenv.lib; {
homepage = https://github.com/Grumbel/sdl-jstest;