tvl-depot/users/wpcarro/assessments/brilliant/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
301 B
Nix
Raw Normal View History

{ 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 = [];
}