aboutsummaryrefslogtreecommitdiff
path: root/devShells/c.nix
blob: f1b98a392d2560e2836882b0ccc0b3b935eba9c1 (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
pkgs:
pkgs.mkShell {
  packages = with pkgs; [
    clang-tools_14
    ctags
    gcc
    gdb
    pkg-config

    autoconf
    automake
    libtool

    gnumake
    bear
    meson
    ninja
    cmake

    valgrind
    lcov
    massif-visualizer
    cppcheck
    flawfinder

    check
    curl
    ncurses
    flex
    bison
    gperf
    gobject-introspection
    gtk3
    gtk4

    # Various libraries
    openssl.dev
    zlib.dev
    curl.dev
    libconfig
    czmq
    libevent.dev

    # LVGL
    SDL2
    libffi.dev

    # Qt
    libsForQt5.qtbase
    libsForQt5.qttranslations
    libsForQt5.qtserialport
    libsForQt5.qtwebsockets
    libsForQt5.qtcharts
    libsForQt5.qtwayland
  ];
  meta.platforms = pkgs.lib.platforms.linux;
}