2021-05-18 10:39:57 +01:00
|
|
|
{ fetchFromGitHub, installShellFiles, lib, stdenv, rustPlatform, Security }:
|
2021-02-25 20:30:58 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "pactorio";
|
|
|
|
version = "0.5.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "figsoda";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "07h9hywz0pc29411myhxjq6pks4p6q6czbqjv7fxf3xkb1mg9grq";
|
|
|
|
};
|
|
|
|
|
2021-05-07 12:00:49 +01:00
|
|
|
cargoSha256 = "1rac2s36j88vm231aji8d0ndfbaa2gzxwsrxrvsi0zp9cqisc6rh";
|
2021-02-25 20:30:58 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2021-05-18 10:39:57 +01:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
2021-02-25 20:30:58 +00:00
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
completions=($releaseDir/build/pactorio-*/out/completions)
|
|
|
|
installShellCompletion ''${completions[0]}/pactorio.{bash,fish}
|
|
|
|
installShellCompletion --zsh ''${completions[0]}/_pactorio
|
|
|
|
'';
|
|
|
|
|
|
|
|
GEN_COMPLETIONS = "1";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Mod package for factorio";
|
|
|
|
homepage = "https://github.com/figsoda/pactorio";
|
|
|
|
changelog = "https://github.com/figsoda/pactorio/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|