smo-server/flake.nix

34 lines
801 B
Nix
Raw Normal View History

2024-12-16 02:28:13 -05:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, flake-utils, fenix }:
flake-utils.lib.eachDefaultSystem
(system:
let
overlays = [ fenix.overlays.default ];
pkgs = import nixpkgs {
inherit system overlays;
};
in
with pkgs;
{
devShells.default = mkShell {
buildInputs = [
pkgs.fenix.stable.completeToolchain
2024-12-17 19:29:22 -05:00
cmake
2024-12-16 02:28:13 -05:00
pkg-config
openssl
alsa-lib
ffmpeg
2024-12-16 02:28:13 -05:00
];
};
}
);
}