f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
25 lines
742 B
Nix
25 lines
742 B
Nix
{ fetchFromGitHub, stdenv, cmake, pkgconfig, SDL, SDL2, ncurses, docbook_xsl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sdl-jstest-${version}";
|
|
version = "2016-03-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Grumbel";
|
|
repo = "sdl-jstest";
|
|
rev = "301a0e8cf3f96de4c5e58d9fe4413e5cd2b4e6d4";
|
|
sha256 = "1qrz09by5snc3n1wppf2y0pj7rx29dlh1g84glga8vvb03n3yb14";
|
|
};
|
|
|
|
buildInputs = [ SDL SDL2 ncurses ];
|
|
nativeBuildInputs = [ cmake pkgconfig docbook_xsl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/Grumbel/sdl-jstest;
|
|
description = "Simple SDL joystick test application for the console";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|