1
0
Fork 0
nixos-config/packages/wizards-dialog/default.nix
2023-02-23 15:46:36 +01:00

47 lines
604 B
Nix

{
mkDerivation,
aeson,
ansi-terminal,
base,
daemons,
haskeline,
lib,
process,
relude,
text,
witch,
wizards,
yaml,
}:
mkDerivation {
pname = "wizards-dialog";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-terminal
base
haskeline
process
relude
text
witch
wizards
];
executableHaskellDepends = [
aeson
ansi-terminal
base
daemons
haskeline
process
relude
text
witch
wizards
yaml
];
license = "AGPL";
mainProgram = "hotkeys";
}