-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.nix
295 lines (273 loc) · 7.47 KB
/
config.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
# This is mostly a work in progress and might not work with what is in
# nixpkgs trunk. If you have questions, feel free to contact me:
# Florian Friesdorf <flo@chaoflow.net>
{
allowUnfree = true;
chromium.enableGoogleTalkPlugin = true;
chromium.enablePepperFlash = true;
firefox.jre = false;
firefox.enableAdobeFlash = true;
firefox.enableGoogleTalkPlugin = true;
git.guiSupport = true;
libreoffice.force = true;
pulseaudio = true; # XXX: this recompiles chromium
packageOverrides = pkgs:
rec {
envTex = pkgs.buildEnv {
name = "mytex";
paths = with pkgs; [
(let myTexLive =
pkgs.texLiveAggregationFun {
paths =
[ pkgs.texLive
pkgs.texLiveCMSuper
pkgs.texLiveExtra
pkgs.texLiveBeamer ];
};
in myTexLive)
];
};
# ipython sites for some python versions with all wheels
ipythonSites = pkgs.buildEnv {
name = "ipython-sites";
paths = map
(python: python.site {
name = "ipython-all-wheels";
wheels = python.wheels.all.wheels;
scriptsFor = [ python.wheels.ipython ];
pickPolicy = cur: new: pkgs.lib.versionOlder cur.version new.version;
# XXX: needed as currently it is not ensured that versioned scripts exist
postBuild =
"install $out/bin/ipython $out/bin/ipython${python.majorVersion}";
})
[ pkgs.python27 pkgs.python32 pkgs.python33 pkgs.python34 ];
# XXX: needed until a story for unversioned scripts is told
ignoreCollisions = true;
};
# ipython for some python versions with all wheels, but without the site
ipythons = pkgs.buildEnv {
name = "ipythons";
paths = map
(python: python.tool {
name = "ipython-all-wheels-${python.majorVersion}";
wheel = python.wheels.ipython;
wheels = python.wheels.all.wheels;
pickPolicy = cur: new: pkgs.lib.versionOlder cur.version new.version;
# XXX: needed as currently it is not ensured that versioned scripts exist
fixupPhase =
"install $out/bin/ipython $out/bin/ipython${python.majorVersion}";
})
[ pkgs.python27 pkgs.python32 pkgs.python33 pkgs.python34 ];
# XXX: needed until a story for unversioned scripts is told
ignoreCollisions = true;
};
### Below here probably outdated things pending review.
envPythonPlonedev = pkgs.buildEnv {
name = "env-python-plonedev-1.0";
paths = with pkgs; [
cyrus_sasl
db4
gitAndTools.gitFull
groff
libxml2
libxslt
openssh
openssl
python27Full
python27Packages.ipython
# python27Packages.site
subversionClient
stdenv
];
};
mpl = pkgs.buildEnv {
name = "mpl";
paths = with pkgs; [
(python27Full.override {
extraLibs = [
# python27Packages.needsmpl
python27Packages.ipython
];
})
];
};
# we want ipython with custom modules!
ipythonenv = pkgs.buildEnv {
name = "ipythonenv";
paths = with pkgs; [
python27Packages.ipython
];
};
# we want virtualenv with custom modules!
venv = pkgs.buildEnv {
name = "venv";
paths = with pkgs; [
python27Packages.virtualenv
];
};
venv26 = pkgs.buildEnv {
name = "venv26";
paths = with pkgs; [
python26Packages.virtualenv
];
};
mpl26 = pkgs.buildEnv {
name = "mpl26";
paths = with pkgs; [
(python26Full.override {
extraLibs = [
# python26Packages.needsmpl
python26Packages.ipython
];
})
];
};
# I use these mostly to have an offline copy of all python packages
pythonWithAll = pythonWithAll27;
pythonWithAll26 = pkgs.buildEnv {
name = "python-with-all-2.6";
paths = with pkgs; [
python26
] ++ (lib.filter (v: (v.type or null) == "derivation")
(lib.attrValues (removeAttrs python26Packages
[ "recursivePthLoader"
"setuptools"
"setuptoolsSite"
])));
ignoreCollisions = true;
};
pythonWithAll27 = pkgs.buildEnv {
name = "python-with-all-2.7";
paths = with pkgs; [
python27
] ++ (lib.filter (v: (v.type or null) == "derivation")
(lib.attrValues (removeAttrs python27Packages
[ "recursivePthLoader"
"setuptools"
"setuptoolsSite"
])));
ignoreCollisions = true;
};
pytest = pkgs.buildEnv {
name = "pytest";
paths = with pkgs; [
(python27Full.override {
extraLibs = [
python27Packages.ipython
];
})
python27Packages.matplotlib
python27Packages.nose
python27Packages.readline
];
ignoreCollisions = true;
};
py27 = pkgs.buildEnv {
name = "py27";
paths = with pkgs; [
cyrus_sasl
db4
file
gitAndTools.gitFull
groff
jdk
libxml2
libxslt
mercurial
mysql
openldap
openssh
openssl
pcre
pkgconfig
postgresql
pycrypto
python27Full
python27Packages.ipython
python27Packages.pyyaml
python27Packages.readline
# python27Packages.site
python27Packages.sqlite3
python27Packages.virtualenv
subversionClient
stdenv
wget
zlib
];
};
starenv = pkgs.buildEnv {
ignoreCollisions = true;
name = "starenv";
paths = with pkgs; [
aespipe
autoconf
cyrus_sasl
db4
file
ghostscript
gitAndTools.gitFull
groff
jdk
libtiff
libxml2
libxslt
lynx
mercurial
openldap
openssh
openssl
pcre
#pdftk
pkgconfig
postgresql
(python26Full.override {
extraLibs = [
python26Packages.pycrypto
] ++ lib.attrValues python26.modules;
})
(python27Full.override {
extraLibs = [
python27Packages.pycrypto
] ++ lib.attrValues python27.modules;
})
python27Packages.virtualenv
readline
sqlite
subversionClient
stdenv
tesseract
vim
wget
xpdf
zlib
];
};
pysideenv = pkgs.buildEnv {
name = "pysideenv";
paths = with pkgs; [
file
gitAndTools.gitFull
less
pyside
python27Full
python27Packages.ipython
python27Packages.matplotlib
python27Packages.pyyaml
python27Packages.scipy
python27Packages.virtualenv
qt4
stdenv
wget
zlib
];
};
KernelEnv = pkgs.buildEnv {
name = "kernelenv";
paths = [
pkgs.defaultStdenv
pkgs.gitAndTools.gitFull
pkgs.ncurses
];
};
};
}