aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/misc/ugtrain/default.nix
blob: 0645645ae2bf345a59bf93d63e400bccb9342e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, scanmem
}:

stdenv.mkDerivation rec {
  version = "0.4.1";
  pname = "ugtrain";

  src = fetchFromGitHub {
    owner  = "ugtrain";
    repo   = "ugtrain";
    rev    = "v${version}";
    sha256 = "0pw9lm8y83mda7x39874ax2147818h1wcibi83pd2x4rp1hjbkkn";
  };

  nativeBuildInputs = [ autoreconfHook pkg-config scanmem ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/ugtrain/ugtrain";
    description = "The Universal Elite Game Trainer for CLI (Linux game trainer research project)";
    maintainers = with maintainers; [ mtrsk ];
    platforms = platforms.linux;
    license = licenses.gpl3Only;
  };
}