aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: e103ae21b3d48f639edbbb1d7ee61440f8524165 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
  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 = let
          libs = with pkgs; [
            alsa-lib

            libGL.dev
          ];
        in
          pkgs.mkShell {
            packages = with pkgs;
              [
                clang
                stdenv.cc
                lldb
                gdb

                man-pages
                man-pages-posix

                xorg.libX11
                xorg.libXi
                xorg.libXcursor
              ]
              ++ libs;
            shellHook = ''
              rm -r .lib-links
              mkdir .lib-links

              ${builtins.concatStringsSep "\n " (map (lib: "ln -s ${lib} .lib-links/") libs)}
            '';
          };
      }
    );

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

          sdl3
          sdl3-ttf
          sdl3-image
        ];

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

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