Merge pull request #100333 from mtrsk/add-ugtrain

ugtrain: init at v0.4.1
This commit is contained in:
Sandro 2020-11-27 21:45:48 +01:00 committed by GitHub
commit 20473a231d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

@ -0,0 +1,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;
};
}

@ -19127,6 +19127,8 @@ in
udisks_glue = callPackage ../os-specific/linux/udisks-glue { };
ugtrain = callPackage ../tools/misc/ugtrain { };
untie = callPackage ../os-specific/linux/untie { };
upower = callPackage ../os-specific/linux/upower { };