aboutsummaryrefslogtreecommitdiff
path: root/devShells/qt.nix
blob: eb9d3e9c06a2cabdd6aa278ff2b20e64ee72df2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  system,
  nixpkgs,
  default,
  c,
}: let
  pkgs = nixpkgs.legacyPackages.${system};
in
  pkgs.mkShell {
    packages = with pkgs;
    with libsForQt5; [
      qtbase
      qttranslations
      qtserialport
      qtwebsockets
      doctest
      qtcharts
      qtwayland
    ];
    inputsFrom = with pkgs; [default c];
    meta.platforms = ["x86_64-linux"];
  }