Fix fetchDeps (#9)

This commit is contained in:
Patrick Stevens
2023-01-16 14:56:50 +00:00
committed by GitHub
parent 5c275c3316
commit 3c6ec7cf7f
2 changed files with 2 additions and 2 deletions

View File

@@ -12,6 +12,6 @@ updates:
interval: "weekly"
- package-ecosystem: "nuget"
directory: "/Gitea"
directory: "/"
schedule:
interval: "weekly"

View File

@@ -46,7 +46,7 @@
flags = [];
runtimeIds = ["win-x64"] ++ map (system: pkgs.dotnetCorePackages.systemToDotnetRid system) dotnet-sdk.meta.platforms;
in
pkgs.writeShellScript "fetch-${pname}-deps" (builtins.readFile (pkgs.substituteAll {
pkgs.writeShellScriptBin "fetch-${pname}-deps" (builtins.readFile (pkgs.substituteAll {
src = ./nix/fetchDeps.sh;
pname = pname;
binPath = pkgs.lib.makeBinPath [pkgs.coreutils dotnet-sdk (pkgs.nuget-to-nix.override {inherit dotnet-sdk;})];