Initial Commit

This commit is contained in:
silver 2023-08-07 18:49:25 +01:00
commit 42522b099f
8 changed files with 344 additions and 0 deletions

23
flake.nix Normal file
View file

@ -0,0 +1,23 @@
{
description = "Skynet Presentations";
inputs = {
utils.url = "github:numtide/flake-utils";
# nix flake lock --update-input bfom
bfom.url = "gitlab:silver_rust/bfom";
};
outputs = { self, nixpkgs, bfom, ... } @inputs:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux.pkgs;
in {
# nix run
apps.x86_64-linux.default = {
type = "app";
program = "${bfom.defaultPackage.x86_64-linux}/bin/cargo-bfom";
};
};
}