Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

sdl-jstest: 20150806 -> 2016-03-29

+9 -6
+9 -6
pkgs/tools/misc/sdl-jstest/default.nix
··· 1 - { fetchgit, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: 1 + { fetchFromGitHub, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "sdl-jstest-20150806"; 5 - src = fetchgit { 6 - url = "https://github.com/Grumbel/sdl-jstest"; 7 - rev = "7b792376178c9656c851ddf106c7d57b2495e8b9"; 8 - sha256 = "3aa9a002de9c9999bd7c6248b94148f15dba6106489e418b2a1a410324f75eb8"; 4 + name = "sdl-jstest-${version}"; 5 + version = "2016-03-29"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Grumbel"; 9 + repo = "sdl-jstest"; 10 + rev = "301a0e8cf3f96de4c5e58d9fe4413e5cd2b4e6d4"; 11 + sha256 = "1qrz09by5snc3n1wppf2y0pj7rx29dlh1g84glga8vvb03n3yb14"; 9 12 }; 10 13 11 14 buildInputs = [ SDL SDL2 ncurses ];