tvl-depot/scratch/brilliant/default.nix
William Carroll 2da4b12266 Consume buildHaskell functions
Use the newly defined `buildHaskell` function for a few of my existing Haskell
projects. So far, it works as intended!
2020-08-12 16:28:39 +01:00

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