-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
31 lines (31 loc) · 1.09 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
{ mkDerivation, aeson, base, bytestring, connection, exceptions
, filepath, hspec, http-client, http-client-tls, lib
, optparse-applicative, parsec, pretty-show, unordered-containers
, yaml
}:
mkDerivation {
pname = "jenkins-to-ssh-config";
version = "0.1.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base bytestring connection exceptions filepath http-client
http-client-tls optparse-applicative parsec pretty-show
unordered-containers yaml
];
executableHaskellDepends = [
aeson base bytestring connection exceptions filepath http-client
http-client-tls optparse-applicative parsec pretty-show
unordered-containers yaml
];
testHaskellDepends = [
aeson base bytestring connection exceptions filepath hspec
http-client http-client-tls optparse-applicative parsec pretty-show
unordered-containers yaml
];
homepage = "https://github.com/thomasbach-dev/unv-jenkins-to-ssh-config";
description = "Helpers to help porting stuff at Univention";
license = lib.licenses.bsd3;
mainProgram = "jenkins-to-ssh-config";
}