about summary refs log tree commit diff
path: root/users/wpcarro/assessments/brilliant/default.nix
blob: 536e54d3650a1f54811067aba6f449d4c31f3572 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ depot, ... }:

depot.users.wpcarro.buildHaskell.program {
  name = "transform-keyboard";
  srcs = builtins.path {
    path = ./.;
    name = "transform-keyboard-src";
  };
  deps = hpkgs: with hpkgs; [
    optparse-applicative
    unordered-containers
    split
    rio
  ];
  ghcExtensions = [];
}