##// END OF EJS Templates
nix: Add linkNodeModules to passthru...
johbo -
r465:0b0a6720 default
parent child Browse files
Show More
@@ -1,227 +1,228 b''
1 1 # Nix environment for the community edition
2 2 #
3 3 # This shall be as lean as possible, just producing the Enterprise
4 4 # derivation. For advanced tweaks to pimp up the development environment we use
5 5 # "shell.nix" so that it does not have to clutter this file.
6 6
7 7 { pkgs ? (import <nixpkgs> {})
8 8 , pythonPackages ? "python27Packages"
9 9 , pythonExternalOverrides ? self: super: {}
10 10 , doCheck ? true
11 11 }:
12 12
13 13 let pkgs_ = pkgs; in
14 14
15 15 let
16 16 pkgs = pkgs_.overridePackages (self: super: {
17 17 # Override subversion derivation to
18 18 # - activate python bindings
19 19 # - set version to 1.8
20 20 subversion = super.subversion18.override {
21 21 httpSupport = true;
22 22 pythonBindings = true;
23 23 python = self.python27Packages.python;
24 24 };
25 25 });
26 26
27 27 inherit (pkgs.lib) fix extends;
28 28
29 29 basePythonPackages = with builtins; if isAttrs pythonPackages
30 30 then pythonPackages
31 31 else getAttr pythonPackages pkgs;
32 32
33 33 elem = builtins.elem;
34 34 basename = path: with pkgs.lib; last (splitString "/" path);
35 35 startsWith = prefix: full: let
36 36 actualPrefix = builtins.substring 0 (builtins.stringLength prefix) full;
37 37 in actualPrefix == prefix;
38 38
39 39 src-filter = path: type: with pkgs.lib;
40 40 let
41 41 ext = last (splitString "." path);
42 42 in
43 43 !elem (basename path) [
44 44 ".git" ".hg" "__pycache__" ".eggs" "node_modules"
45 45 "build" "data" "tmp"] &&
46 46 !elem ext ["egg-info" "pyc"] &&
47 47 !startsWith "result" path;
48 48
49 49 sources = pkgs.config.rc.sources or {};
50 50 rhodecode-enterprise-ce-src = builtins.filterSource src-filter ./.;
51 51
52 52 # Load the generated node packages
53 53 nodePackages = pkgs.callPackage "${pkgs.path}/pkgs/top-level/node-packages.nix" rec {
54 54 self = nodePackages;
55 55 generated = pkgs.callPackage ./pkgs/node-packages.nix { inherit self; };
56 56 };
57 57
58 58 # TODO: Should be taken automatically out of the generates packages.
59 59 # apps.nix has one solution for this, although I'd prefer to have the deps
60 60 # from package.json mapped in here.
61 61 nodeDependencies = with nodePackages; [
62 62 grunt
63 63 grunt-contrib-concat
64 64 grunt-contrib-jshint
65 65 grunt-contrib-less
66 66 grunt-contrib-watch
67 67 jshint
68 68 ];
69 69
70 70 pythonGeneratedPackages = self: basePythonPackages.override (a: {
71 71 inherit self;
72 72 })
73 73 // (scopedImport {
74 74 self = self;
75 75 super = basePythonPackages;
76 76 inherit pkgs;
77 77 inherit (pkgs) fetchurl fetchgit;
78 78 } ./pkgs/python-packages.nix);
79 79
80 80 pythonOverrides = import ./pkgs/python-packages-overrides.nix {
81 81 inherit
82 82 basePythonPackages
83 83 pkgs;
84 84 };
85 85
86 86 pythonLocalOverrides = self: super: {
87 87 rhodecode-enterprise-ce =
88 88 let
89 89 version = builtins.readFile ./rhodecode/VERSION;
90 90 linkNodeModules = ''
91 91 echo "Link node packages"
92 92 # TODO: check if this adds stuff as a dependency, closure size
93 93 rm -fr node_modules
94 94 mkdir -p node_modules
95 95 ${pkgs.lib.concatMapStrings (dep: ''
96 96 ln -sfv ${dep}/lib/node_modules/${dep.pkgName} node_modules/
97 97 '') nodeDependencies}
98 98 echo "DONE: Link node packages"
99 99 '';
100 100 in super.rhodecode-enterprise-ce.override (attrs: {
101 101
102 102 inherit
103 103 doCheck
104 104 version;
105 105 name = "rhodecode-enterprise-ce-${version}";
106 106 releaseName = "RhodeCodeEnterpriseCE-${version}";
107 107 src = rhodecode-enterprise-ce-src;
108 108
109 109 buildInputs =
110 110 attrs.buildInputs ++
111 111 (with self; [
112 112 pkgs.nodePackages.grunt-cli
113 113 pkgs.subversion
114 114 pytest-catchlog
115 115 rhodecode-testdata
116 116 ]);
117 117
118 118 propagatedBuildInputs = attrs.propagatedBuildInputs ++ (with self; [
119 119 rhodecode-tools
120 120 ]);
121 121
122 122 # TODO: johbo: Make a nicer way to expose the parts. Maybe
123 123 # pkgs/default.nix?
124 124 passthru = {
125 125 inherit
126 pythonLocalOverrides
127 myPythonPackagesUnfix;
126 linkNodeModules
127 myPythonPackagesUnfix
128 pythonLocalOverrides;
128 129 pythonPackages = self;
129 130 };
130 131
131 132 LC_ALL = "en_US.UTF-8";
132 133 LOCALE_ARCHIVE =
133 134 if pkgs.stdenv ? glibc
134 135 then "${pkgs.glibcLocales}/lib/locale/locale-archive"
135 136 else "";
136 137
137 138 # Somewhat snappier setup of the development environment
138 139 # TODO: move into shell.nix
139 140 # TODO: think of supporting a stable path again, so that multiple shells
140 141 # can share it.
141 142 shellHook = ''
142 143 tmp_path=$(mktemp -d)
143 144 export PATH="$tmp_path/bin:$PATH"
144 145 export PYTHONPATH="$tmp_path/${self.python.sitePackages}:$PYTHONPATH"
145 146 mkdir -p $tmp_path/${self.python.sitePackages}
146 147 python setup.py develop --prefix $tmp_path --allow-hosts ""
147 148 '' + linkNodeModules;
148 149
149 150 preCheck = ''
150 151 export PATH="$out/bin:$PATH"
151 152 '';
152 153
153 154 postCheck = ''
154 155 rm -rf $out/lib/${self.python.libPrefix}/site-packages/pytest_pylons
155 156 rm -rf $out/lib/${self.python.libPrefix}/site-packages/rhodecode/tests
156 157 '';
157 158
158 159 preBuild = linkNodeModules + ''
159 160 grunt
160 161 rm -fr node_modules
161 162 '';
162 163
163 164 postInstall = ''
164 165 # python based programs need to be wrapped
165 166 ln -s ${self.supervisor}/bin/supervisor* $out/bin/
166 167 ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
167 168 ln -s ${self.PasteScript}/bin/paster $out/bin/
168 169 ln -s ${self.pyramid}/bin/* $out/bin/ #*/
169 170
170 171 # rhodecode-tools
171 172 # TODO: johbo: re-think this. Do the tools import anything from enterprise?
172 173 ln -s ${self.rhodecode-tools}/bin/rhodecode-* $out/bin/
173 174
174 175 # note that condition should be restricted when adding further tools
175 176 for file in $out/bin/*; do #*/
176 177 wrapProgram $file \
177 178 --prefix PYTHONPATH : $PYTHONPATH \
178 179 --prefix PATH : $PATH \
179 180 --set PYTHONHASHSEED random
180 181 done
181 182
182 183 mkdir $out/etc
183 184 cp configs/production.ini $out/etc
184 185
185 186 echo "Writing meta information for rccontrol to nix-support/rccontrol"
186 187 mkdir -p $out/nix-support/rccontrol
187 188 cp -v rhodecode/VERSION $out/nix-support/rccontrol/version
188 189 echo "DONE: Meta information for rccontrol written"
189 190
190 191 # TODO: johbo: Make part of ac-tests
191 192 if [ ! -f rhodecode/public/js/scripts.js ]; then
192 193 echo "Missing scripts.js"
193 194 exit 1
194 195 fi
195 196 if [ ! -f rhodecode/public/css/style.css ]; then
196 197 echo "Missing style.css"
197 198 exit 1
198 199 fi
199 200 '';
200 201
201 202 });
202 203
203 204 rhodecode-testdata = import "${rhodecode-testdata-src}/default.nix" {
204 205 inherit
205 206 doCheck
206 207 pkgs
207 208 pythonPackages;
208 209 };
209 210
210 211 };
211 212
212 213 rhodecode-testdata-src = sources.rhodecode-testdata or (
213 214 pkgs.fetchhg {
214 215 url = "https://code.rhodecode.com/upstream/rc_testdata";
215 216 rev = "v0.8.0";
216 217 sha256 = "0hy1ba134rq2f9si85yx7j4qhc9ky0hjzdk553s3q026i7km809m";
217 218 });
218 219
219 220 # Apply all overrides and fix the final package set
220 221 myPythonPackagesUnfix =
221 222 (extends pythonExternalOverrides
222 223 (extends pythonLocalOverrides
223 224 (extends pythonOverrides
224 225 pythonGeneratedPackages)));
225 226 myPythonPackages = (fix myPythonPackagesUnfix);
226 227
227 228 in myPythonPackages.rhodecode-enterprise-ce
General Comments 0
You need to be logged in to leave comments. Login now