mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
29 lines
674 B
Nix
29 lines
674 B
Nix
{ 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 = "Universal Elite Game Trainer for CLI (Linux game trainer research project)";
|
|
maintainers = with maintainers; [ mtrsk ];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl3Only;
|
|
};
|
|
}
|