-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.nix
110 lines (90 loc) · 3.84 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{ system ? builtins.currentSystem }:
let
pkgs = import <nixpkgs> { inherit system; };
linuxPackages = pkgs.linuxPackages;
in
rec {
conveyor-install-lib = import ./pkgs/build-support/conveyor-install-lib {
inherit (pkgs) stdenv;
};
conveyor-core = import ./pkgs/development/web/conveyor-core {
inherit (pkgs) stdenv procps gnugrep gawk jre fetchFromGitHub;
inherit conveyor-install-lib;
};
conveyor-workflow = import ./pkgs/development/libraries/conveyor-workflow {
inherit (pkgs) stdenv fetchFromGitHub;
inherit conveyor-install-lib;
};
conveyor-apache = import ./pkgs/servers/http/conveyor-apache {
inherit (pkgs) stdenv fetchurl pkgconfig gcc openssl zlib perl;
inherit conveyor-core conveyor-install-lib;
};
conveyor-mysql = import ./pkgs/servers/sql/conveyor-mysql {
inherit (pkgs) stdenv patchelf fetchurl pkgconfig gcc openssl zlib perl cmake bison ncurses;
inherit conveyor-core conveyor-install-lib;
};
conveyor-composer = import ./pkgs/development/misc/conveyor-composer {
inherit (pkgs) stdenv fetchurl;
inherit conveyor-core conveyor-install-lib;
};
conveyor-arangodb = import ./pkgs/servers/nosql/conveyor-arangodb {
inherit (pkgs) stdenv fetchurl readline openssl go;
inherit conveyor-install-lib;
};
conveyor-orientdb = import ./pkgs/servers/nosql/conveyor-orientdb {
inherit (pkgs) stdenv patch perl fetchurl fetchFromGitHub;
inherit conveyor-core conveyor-composer conveyor-php conveyor-install-lib;
};
conveyor-php = import ./pkgs/development/interpreters/conveyor-php {
# Needs apache tools to build apache PHP module.
inherit conveyor-core conveyor-apache conveyor-mysql conveyor-install-lib;
# Dependencies from Nixpkgs
inherit (pkgs) stdenv fetchurl gcc perl openssl zlib ncurses libxml2 libpng libjpeg curl gdbm icu imagemagick gettext readline libxslt libmcrypt freetype db4 bzip2 cacert;
libiconv = pkgs.libiconvOrLibc;
inherit (pkgs.xlibs) libXpm;
};
conveyor-phpunit = import ./pkgs/development/libraries/conveyor-phpunit {
inherit (pkgs) stdenv fetchurl;
inherit conveyor-install-lib;
};
conveyor-less = import ./pkgs/development/interpreters/conveyor-less {
inherit (pkgs) stdenv nodejs;
inherit conveyor-core conveyor-install-lib;
};
conveyor-jquery = import ./pkgs/development/libraries/conveyor-jquery {
inherit (pkgs) stdenv fetchurl perl;
inherit conveyor-core conveyor-install-lib;
};
conveyor-jquery-sticky = import ./pkgs/development/libraries/conveyor-jquery-sticky {
inherit (pkgs) stdenv fetchurl perl;
inherit conveyor-core conveyor-install-lib;
};
conveyor-icanhaz = import ./pkgs/development/libraries/conveyor-icanhaz {
inherit (pkgs) stdenv fetchurl perl;
inherit conveyor-core conveyor-install-lib;
};
conveyor-pest = import ./pkgs/development/libraries/conveyor-pest {
inherit (pkgs) stdenv fetchFromGitHub;
inherit conveyor-install-lib;
};
conveyor-twitter-bootstrap = import ./pkgs/development/web/conveyor-twitter-bootstrap {
inherit (pkgs) stdenv fetchFromGitHub;# lessc closurecompiler;
inherit conveyor-core conveyor-install-lib;
};
conveyor-minify = import ./pkgs/development/web/conveyor-minify {
inherit (pkgs) stdenv fetchFromGitHub;
inherit conveyor-core conveyor-install-lib;
};
conveyor-standards = import ./pkgs/data/documentation/conveyor-standards {
inherit (pkgs) stdenv fetchFromGitHub;
inherit conveyor-core conveyor-install-lib;
};
conveyor-nix-documentation = import ./pkgs/data/documentation/conveyor-nix-documentation {
inherit (pkgs) stdenv fetchFromGitHub;
inherit conveyor-core conveyor-install-lib;
};
conveyor-stack-documentation = import ./pkgs/data/documentation/conveyor-stack-documentation {
inherit (pkgs) stdenv fetchFromGitHub;
inherit conveyor-core conveyor-install-lib;
};
}