uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
28
pkgs/tools/misc/ugtrain/default.nix
Normal file
28
pkgs/tools/misc/ugtrain/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, 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 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue