about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/X11/opentabletdriver/shell.nix
blob: bb60dfd503973ac1a1f2bfc76326acb2b94b94e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs ? import ../../../../. { } }:

with pkgs;

mkShell {
  packages = [
    common-updater-scripts
    nuget-to-nix
    curl
    dotnetCorePackages.sdk_5_0
    jq
  ];
}