2da4b12266
Use the newly defined `buildHaskell` function for a few of my existing Haskell projects. So far, it works as intended!
16 lines
330 B
Nix
16 lines
330 B
Nix
let
|
|
briefcase = import /home/wpcarro/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 = [];
|
|
}
|