a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
16 lines
302 B
Nix
16 lines
302 B
Nix
{ 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 = [ ];
|
|
}
|