SFML_testing/flake.nix

60 lines
1.5 KiB
Nix
Raw Normal View History

2023-10-10 16:55:58 +00:00
{
description = "SFML flake for building and developing";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }:
let
# Systems supported
allSystems = [
"x86_64-linux" # 64-bit Intel/AMD Linux
"aarch64-linux" # 64-bit ARM Linux
"x86_64-darwin" # 64-bit Intel macOS
"aarch64-darwin" # 64-bit ARM macOS
];
# Helper to provide system-specific attributes
forAllSystems = f: nixpkgs.lib.genAttrs allSystems (system: f {
pkgs = import nixpkgs { inherit system; };
});
in
{
# Development section
devShells = forAllSystems ({ pkgs }: {
default = pkgs.mkShell {
# The Nix packages provided in the environment
packages = with pkgs; [
2023-10-11 10:51:24 +00:00
gdb
2023-10-10 19:10:52 +00:00
sfml
cmake
2023-10-10 16:55:58 +00:00
gcc
];
};
});
# Build section
packages = forAllSystems ({ pkgs }: {
default =
let
2023-10-10 19:10:52 +00:00
binName = "SFMLtest";
2023-10-10 16:55:58 +00:00
cppDependencies = with pkgs; [
2023-10-10 19:10:52 +00:00
sfml
cmake
2023-10-10 16:55:58 +00:00
gcc
];
in
pkgs.stdenv.mkDerivation {
2023-10-10 19:10:52 +00:00
name = "SFMLtest";
2023-10-10 16:55:58 +00:00
src = self;
buildInputs = cppDependencies;
buildPhase = "make -j $NIX_BUILD_CORES";
2023-10-10 16:55:58 +00:00
installPhase = ''
mkdir -p $out/bin
mv $TMP/source/bin/${binName} $out/bin
2023-10-10 16:55:58 +00:00
'';
};
});
};
}