mirror of
https://codeberg.org/steam-vent/proto-csgo.git
synced 2026-06-03 18:14:07 +02:00
initial import from steam-vent repo
This commit is contained in:
commit
b4633fa310
90 changed files with 247724 additions and 0 deletions
34
flake.nix
Normal file
34
flake.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-25.05";
|
||||
flakelight = {
|
||||
url = "github:nix-community/flakelight";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
mill-scale = {
|
||||
url = "git+https://codeberg.org/icewind/mill-scale.git";
|
||||
inputs.flakelight.follows = "flakelight";
|
||||
};
|
||||
steam-vent = {
|
||||
url = "git+https://codeberg.org/steam-vent/steam-vent.git";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.flakelight.follows = "flakelight";
|
||||
inputs.mill-scale.follows = "mill-scale";
|
||||
};
|
||||
};
|
||||
outputs = {
|
||||
mill-scale,
|
||||
steam-vent,
|
||||
...
|
||||
}:
|
||||
mill-scale ./. {
|
||||
packages = {
|
||||
proto-builder = {craneLib, ...}:
|
||||
craneLib.buildPackage {
|
||||
src = craneLib.cleanCargoSource (steam-vent + "/protobuf/build");
|
||||
doCheck = false;
|
||||
strictDeps = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue