Skip to content

Commit

Permalink
nix flake
Browse files Browse the repository at this point in the history
  • Loading branch information
NextFire committed Apr 3, 2024
1 parent a52b80e commit bd1ca68
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
64 changes: 64 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};

outputs = inputs@{ flake-parts, self, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];

perSystem = { pkgs, system, ... }: {
devShells.default = with pkgs; mkShell {
packages = [ ffmpeg meson ninja pkg-config ];
};
};
};
}

0 comments on commit bd1ca68

Please sign in to comment.