Skip to content

Commit

Permalink
fix: pin depotdownloader to inputs.nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
olistrik committed Apr 14, 2024
1 parent aa223d3 commit 1023e7f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,17 @@
'';
});

overlays.default = final: prev: {
fetchSteam = final.callPackage ./fetch-steam {};
overlays.default = final: prev: let
pkgs = pkgsFor final.system;
in rec {
fetchSteam = final.callPackage ./fetch-steam {inherit (pkgs) depotdownloader;};
steamworks-sdk-redist = final.callPackage ./steamworks-sdk-redist {};
};

packages = forAllSystems (system: let
pkgs = pkgsFor system;
in rec {
inherit (pkgs) steamworks-sdk-redist;
});
};
}

0 comments on commit 1023e7f

Please sign in to comment.