blob: 9c9117437fe5de5ee8e9fd4aebd92596d68e33cc (
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
|
{
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; [
gcc
stdenv.cc
gdb
man-pages
man-pages-posix
alsa-lib
raylib
];
};
}
);
packages = forEachSupportedSystem ({pkgs}: {
default = pkgs.stdenv.mkDerivation rec {
name = "crynth";
src = ./.;
buildInputs = with pkgs; [
raylib
alsa-lib
];
buildPhase = ''
cc -o nob nob.c
./nob
'';
installPhase = ''
mkdir -p $out/usr/bin
cp ./build/crynth $out/usr/bin
'';
};
});
};
}
|