nixpkgs/pkgs/games/r2mod_cli/default.nix

35 lines
732 B
Nix
Raw Normal View History

2020-11-29 19:05:26 +00:00
{ fetchFromGitHub
, jq
, makeWrapper
, p7zip
, lib, stdenv
2020-11-29 19:05:26 +00:00
}:
stdenv.mkDerivation rec {
pname = "r2mod_cli";
version = "1.0.5";
src = fetchFromGitHub {
owner = "Foldex";
repo = "r2mod_cli";
rev = "v${version}";
sha256 = "1g64f8ms7yz4rzm6xb93agc08kh9sbwkhvq35dpfhvi6v59j3n5m";
};
buildInputs = [ makeWrapper ];
makeFlags = [ "PREFIX=$(out)" ];
postInstall = ''
2021-01-15 04:31:39 +00:00
wrapProgram $out/bin/r2mod --prefix PATH : "${lib.makeBinPath [ jq p7zip ]}";
2020-11-29 19:05:26 +00:00
'';
meta = with lib; {
2020-11-29 19:05:26 +00:00
description = "A Risk of Rain 2 Mod Manager in Bash";
homepage = "https://github.com/foldex/r2mod_cli";
license = licenses.gpl3Only;
maintainers = [ maintainers.reedrw ];
platforms = platforms.linux;
};
}