-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitlab-triage.nix
More file actions
23 lines (23 loc) · 862 Bytes
/
gitlab-triage.nix
File metadata and controls
23 lines (23 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, aeson, base, bytestring, containers, directory
, exceptions, http-client-tls, http-types, mtl, process, servant
, servant-client, stdenv, text, time, connection, data-default, brick, microlens, vector, vty, generic-lens, lens, cursor, megaparsec, yaml, temporary, either,
psqueues
}:
mkDerivation {
pname = "gitlab-triage";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base bytestring containers directory exceptions mtl process
servant servant-client text time
];
executableHaskellDepends = [
base http-client-tls http-types servant servant-client text connection data-default
brick microlens vector vty generic-lens lens cursor megaparsec yaml aeson temporary process
either psqueues
];
doHaddock = false;
license = stdenv.lib.licenses.bsd3;
}