factorio: update

This commit is contained in:
Leonardo Eugênio 2025-08-09 12:45:03 -03:00
parent 4e8a3bd000
commit 6f074851e5
3 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@
{
services.factorio = {
enable = true;
package = pkgs.factorio-headless; # I override this in ./pkgs
package = pkgs.my-factorio-headless;
public = true;
lan = true;
openFirewall = true;

View file

@ -9,7 +9,7 @@ rec {
emmet-cli = pkgs.callPackage ./emmet-cli.nix { };
material-wifi-icons = pkgs.callPackage ./material-wifi-icons.nix { };
gnome-pass-search-provider = pkgs.callPackage ./gnome-pass-search-provider.nix { };
factorio-headless = pkgs.callPackage ./factorio-headless {
my-factorio-headless = pkgs.callPackage ./factorio-headless {
inherit (pkgs.unstable) factorio-headless;
};
}

View file

@ -1,10 +1,10 @@
{ factorio-headless, pkgs }:
factorio-headless.overrideAttrs (_: rec {
version = "2.0.47";
version = "2.0.60";
src = pkgs.fetchurl {
name = "factorio_headless_x64-${version}.tar.xz";
url = "https://www.factorio.com/get-download/${version}/headless/linux64";
hash = "sha256-8PMgx3YWpHlCJ+tjenC1VxCPMUGkYzJ2WTIgp2j0miY=";
hash = "sha256-abW+GoZ/2ZUk+ZFN/ukAoaw4bPTnTEpjdowF3E0rKws=";
};
})