aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 5e1a282694737b6cd91a52d798d4f97304d68889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
  description = "A development flake for crynth";

  inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1";

  outputs = inputs: let
    supportedSystems = [
      "x86_64-linux" # 64-bit Intel/AMD Linux
      "aarch64-linux" # 64-bit ARM Linux
    ];

    forEachSupportedSystem = f:
      inputs.nixpkgs.lib.genAttrs supportedSystems (
        system:
          f {
            pkgs = import inputs.nixpkgs {inherit system;};
          }
      );
  in {
    devShells = forEachSupportedSystem (
      {pkgs}: {
        default = pkgs.mkShell {
          packages = with pkgs; [
            clang
            stdenv.cc
            lldb

            man-pages
            man-pages-posix

            alsa-lib

            sdl3
            sdl3-ttf
            sdl3-image
          ];
        };
      }
    );

    packages = forEachSupportedSystem ({pkgs}: {
      default = pkgs.stdenv.mkDerivation rec {
        name = "crynth";
        src = ./.;
        buildInputs = with pkgs; [
          sdl3
          alsa-lib
        ];

        buildPhase = ''
          cc -o nob nob.c
          ./nob
        '';

        installPhase = ''
          mkdir -p $out/bin
          cp ./build/crynth $out/bin
        '';
      };
    });
  };
}