-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.nix
More file actions
73 lines (66 loc) · 1.58 KB
/
shell.nix
File metadata and controls
73 lines (66 loc) · 1.58 KB
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
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
haskellDeps = ps: with ps; [
base
lens
mtl
data-fix
groups
postgresql-simple
unordered-containers
prettyprinter
comonad
parsec
SVGFonts
diagrams
diagrams-contrib
pptable
tabl
groupBy
];
myghc = pkgs.haskellPackages.ghcWithPackages haskellDeps;
p="mufum";
mypython = pkgs.python3.buildEnv.override {
extraLibs = with pkgs.python37Packages; [Babel chardet decorator docutils feedparser gevent greenlet html2text jinja2 lxml Mako markupsafe mock num2words ofxparse passlib pillow psutil psycopg2 pydot pyparsing pypdf2 pyserial python-dateutil pytz pyusb qrcode reportlab requests suds-jurko vobject XlsxWriter xlwt xlrd polib python-stdnum watchdog unicodecsv pysftp networkx protobuf websockify sphinx_rtd_theme python-dateutil urllib3 certifi]; };
in
#idris_sdl2 idris_sdl
stdenv.mkDerivation {
name = "idris-env";
LD_LIBRARY_PATH="${pkgs.postgresql_10.lib}/lib";
buildInputs = [
#postgresql_10
gmp
yarn
yarn2nix
sass
myghc
gdb
inkscape
qpdf
#graphviz-nox
graphviz
chez
pkgs.haskellPackages.cabal-install
poppler_utils
#mypython
#pkgs.python3Packages.ipython
nodejs
(with nodePackages; [
browserify
js-beautify
#foundation-sites
bower
gulp
])
#SDL2.dev
zulip.out
SDL2.dev
SDL2_image.out
#postgresql_10.lib
#postgresql_10
# postgresql_10.out
pkg-config.out
libpqxx
];
}