Merge pull request #174344 from helsinki-systems/upd/qjoypad

qjoypad: 4.1.0 -> 4.3.1
main
Lassulus 2 years ago committed by GitHub
commit ce201e84f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 36
      pkgs/tools/misc/qjoypad/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -1,21 +1,19 @@
{ lib, stdenv, fetchurl, pkg-config, libX11, libXtst, qt4 }:
stdenv.mkDerivation rec {
{ lib, mkDerivation, fetchFromGitHub, pkg-config, cmake, libX11, libXtst, qtbase, qttools, qtx11extras }:
mkDerivation rec {
pname = "qjoypad";
version = "4.1.0";
src = fetchurl {
url = "mirror://sourceforge/qjoypad/qjoypad-${version}.tar.gz";
sha256 = "1jlm7i26nfp185xrl41kz5z6fgvyj51bjpz48cg27xx64y40iamm";
version = "4.3.1";
src = fetchFromGitHub {
owner = "panzi";
repo = pname;
rev = "v${version}";
hash = "sha256:1w26ddxb1xirb7qjf7kv9llxzjhbhcb7warnxbx41qhbni46g26y";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libX11 libXtst qt4 ];
NIX_LDFLAGS = "-lX11";
patchPhase = ''
cd src
substituteInPlace config --replace /bin/bash ${stdenv.shell}
mkdir -p $out
export NIX_LDFLAGS="$NIX_LDFLAGS -rpath ${libX11}/lib"
'';
meta = {
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [ libX11 libXtst qtbase qttools qtx11extras ];
meta = with lib; {
description = "A program that lets you use gaming devices anywhere";
longDescription = ''
A simple Linux/QT program that lets you use your gaming devices
@ -33,9 +31,9 @@ stdenv.mkDerivation rec {
of gaming devices in Linux, and makes the Linux gaming
experience just a little bit nicer.
'';
homepage = "http://qjoypad.sourceforge.net";
homepage = "https://github.com/panzi/qjoypad/";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ astsmtl ];
platforms = with lib.platforms; linux;
maintainers = with maintainers; [ astsmtl ];
platforms = with platforms; linux;
};
}

@ -9802,7 +9802,7 @@ with pkgs;
qjournalctl = libsForQt5.callPackage ../applications/system/qjournalctl { };
qjoypad = callPackage ../tools/misc/qjoypad { };
qjoypad = libsForQt5.callPackage ../tools/misc/qjoypad { };
qmk = callPackage ../tools/misc/qmk { };

Loading…
Cancel
Save