nixpkgs/pkgs/tools/misc/sdl-jstest/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
764 B
Nix
Raw Normal View History

2022-03-08 14:23:46 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, SDL, SDL2, ncurses, docbook_xsl, git }:
2015-06-12 00:01:48 +01:00
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "sdl-jstest";
2019-06-03 17:31:36 +01:00
version = "2018-06-15";
2016-04-30 01:04:51 +01:00
2022-03-08 14:23:46 +00:00
src = fetchFromGitHub {
owner = "Grumbel";
repo = "sdl-jstest";
2019-06-03 17:31:36 +01:00
rev = "aafbdb1ed3e687583037ba55ae88b1210d6ce98b";
2022-03-08 14:23:46 +00:00
sha256 = "sha256-Mw+ENOVZ0O8WercdDNLAAkNMPZ2NyxSa+nMtgNmXjFw=";
fetchSubmodules = true;
2015-06-12 00:01:48 +01:00
};
buildInputs = [ SDL SDL2 ncurses ];
nativeBuildInputs = [ cmake pkg-config docbook_xsl git ];
meta = with lib; {
homepage = "https://github.com/Grumbel/sdl-jstest";
2015-06-12 00:01:48 +01:00
description = "Simple SDL joystick test application for the console";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}