33890d8a8b
Where it belongs...
16 lines
318 B
Nix
16 lines
318 B
Nix
let
|
|
briefcase = import <briefcase> {};
|
|
in briefcase.buildHaskell.program {
|
|
name = "transform-keyboard";
|
|
srcs = builtins.path {
|
|
path = ./.;
|
|
name = "transform-keyboard-src";
|
|
};
|
|
deps = hpkgs: with hpkgs; [
|
|
optparse-applicative
|
|
unordered-containers
|
|
split
|
|
rio
|
|
];
|
|
ghcExtensions = [];
|
|
}
|