nixpkgs/pkgs/misc/drivers/moltengamepad/default.nix
Matthew Bauer 76999cc40e treewide: remove aliases in nixpkgs
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases =
true;}'’ work in Nixpkgs.

Misc...

- qtikz: use libsForQt5.callPackage

  This ensures we get the right poppler.

- rewrites:

  docbook5_xsl -> docbook_xsl_ns
  docbook_xml_xslt -> docbook_xsl

diffpdf: fixup
2018-07-18 23:25:20 -04:00

40 lines
893 B
Nix

{ stdenv, fetchFromGitHub, udev }:
stdenv.mkDerivation rec {
name = "moltengamepad-git-${version}";
version = "2016-05-04";
src = fetchFromGitHub {
owner = "jgeumlek";
repo = "MoltenGamepad";
rev = "6656357964c22be97227fc5353b53c6ab1e69929";
sha256 = "05cpxfzxgm86kxx0a9f76bshjwpz9w1g8bn30ib1i5a3fv7bmirl";
};
hardeningDisable = [ "format" ];
buildInputs = [ udev ];
buildPhase = ''
make
'';
installPhase = ''
mkdir -p $out/bin
cp moltengamepad $out/bin
'';
patchPhase = ''
sed -i -e '159d;161d;472d;473d;474d;475d' source/eventlists/key_list.cpp
'';
meta = with stdenv.lib; {
homepage = https://github.com/jgeumlek/MoltenGamepad;
description = "Flexible Linux input device translator, geared for gamepads";
license = licenses.mit;
maintainers = [ maintainers.ebzzry ];
platforms = platforms.linux;
};
}