mirror of
https://codeberg.org/icewind/vbsp-to-gltf.git
synced 2026-06-03 10:14:08 +02:00
fix assets build
This commit is contained in:
parent
76e17ee105
commit
2994f7b509
2 changed files with 40 additions and 3 deletions
23
flake.lock
generated
23
flake.lock
generated
|
|
@ -76,7 +76,8 @@
|
|||
"inputs": {
|
||||
"flakelight": "flakelight",
|
||||
"mill-scale": "mill-scale",
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": "nixpkgs",
|
||||
"steam-fetcher": "steam-fetcher"
|
||||
}
|
||||
},
|
||||
"rust-overlay": {
|
||||
|
|
@ -100,6 +101,26 @@
|
|||
"repo": "rust-overlay",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"steam-fetcher": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1714795926,
|
||||
"narHash": "sha256-PkgC9jqoN6cJ8XYzTA2PlrWs7aPJkM3BGiTxNqax0cA=",
|
||||
"owner": "nix-community",
|
||||
"repo": "steam-fetcher",
|
||||
"rev": "12f66eafb7862d91b3e30c14035f96a21941bd9c",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"repo": "steam-fetcher",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
|
|
|
|||
20
flake.nix
20
flake.nix
|
|
@ -9,8 +9,16 @@
|
|||
url = "git+https://codeberg.org/icewind/mill-scale.git";
|
||||
inputs.flakelight.follows = "flakelight";
|
||||
};
|
||||
steam-fetcher = {
|
||||
url = "github:nix-community/steam-fetcher";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
outputs = {mill-scale, ...}:
|
||||
};
|
||||
outputs = {
|
||||
mill-scale,
|
||||
steam-fetcher,
|
||||
...
|
||||
}:
|
||||
mill-scale ./. {
|
||||
extraPaths = [./src/server];
|
||||
|
||||
|
|
@ -20,6 +28,14 @@
|
|||
'';
|
||||
};
|
||||
|
||||
withOverlays = [(import ./nix/overlay.nix)];
|
||||
packages = {
|
||||
vbsp-server = pkgs: pkgs.vbsp-server;
|
||||
vbsp-server-viewer = pkgs: pkgs.vbsp-server-viewer;
|
||||
};
|
||||
|
||||
withOverlays = [
|
||||
steam-fetcher.overlays.default
|
||||
(import ./nix/overlay.nix)
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue