-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathdefault.nix
38 lines (38 loc) · 1.61 KB
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ mkDerivation, ansi-terminal, async, attoparsec, base, bytestring
, cassava, containers, directory, extra, filelock, filepath
, hermes-json, HUnit, lib, MemoTrie, nix-derivation, optics, random
, relude, safe, safe-exceptions, stm, streamly-core, strict
, strict-types, terminal-size, text, time, transformers
, typed-process, unix, word8
}:
mkDerivation {
pname = "nix-output-monitor";
version = "2.1.6";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-terminal async attoparsec base bytestring cassava containers
directory extra filelock filepath hermes-json MemoTrie
nix-derivation optics relude safe safe-exceptions stm streamly-core
strict strict-types terminal-size text time transformers word8
];
executableHaskellDepends = [
ansi-terminal async attoparsec base bytestring cassava containers
directory extra filelock filepath hermes-json MemoTrie
nix-derivation optics relude safe safe-exceptions stm streamly-core
strict strict-types terminal-size text time transformers
typed-process unix word8
];
testHaskellDepends = [
ansi-terminal async attoparsec base bytestring cassava containers
directory extra filelock filepath hermes-json HUnit MemoTrie
nix-derivation optics random relude safe safe-exceptions stm
streamly-core strict strict-types terminal-size text time
transformers typed-process word8
];
homepage = "https://code.maralorn.de/maralorn/nix-output-monitor";
description = "Processes output of Nix commands to show helpful and pretty information";
license = lib.licenses.agpl3Plus;
mainProgram = "nom";
}