4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
879 B
Nix
40 lines
879 B
Nix
{ lib, stdenv, fetchFromGitHub, udev }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "moltengamepad-git";
|
|
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 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;
|
|
};
|
|
|
|
}
|