python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / ugtrain / default.nix
blobe92170ad595a6ac98c0559a2fe6fe87238de025e
1 { lib, stdenv
2 , fetchFromGitHub
3 , autoreconfHook
4 , pkg-config
5 , scanmem
6 }:
8 stdenv.mkDerivation rec {
9   version = "0.4.1";
10   pname = "ugtrain";
12   src = fetchFromGitHub {
13     owner  = "ugtrain";
14     repo   = "ugtrain";
15     rev    = "v${version}";
16     sha256 = "0pw9lm8y83mda7x39874ax2147818h1wcibi83pd2x4rp1hjbkkn";
17   };
19   nativeBuildInputs = [ autoreconfHook pkg-config scanmem ];
21   meta = with lib; {
22     homepage = "https://github.com/ugtrain/ugtrain";
23     description = "The Universal Elite Game Trainer for CLI (Linux game trainer research project)";
24     maintainers = with maintainers; [ mtrsk ];
25     platforms = platforms.linux;
26     license = licenses.gpl3Only;
27   };