1
0
Fork 0
nixos-config/packages/status-script/default.nix
2023-03-12 05:55:15 +01:00

39 lines
523 B
Nix

{
mkDerivation,
async,
base,
bytestring,
directory,
filepath,
lib,
reflex,
relude,
say,
shh,
stm,
string-interpolate,
time,
}:
mkDerivation {
pname = "status-script";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
async
base
bytestring
directory
filepath
reflex
relude
say
shh
stm
string-interpolate
time
];
license = lib.licenses.agpl3Plus;
mainProgram = "status-script";
}