mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 20:02:14 +03:00
ugtrain: init at v0.4.1
This commit is contained in:
parent
684d691c6e
commit
9de5bf446a
28
pkgs/tools/misc/ugtrain/default.nix
Normal file
28
pkgs/tools/misc/ugtrain/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -18640,6 +18640,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user