##// END OF EJS Templates
default.nix:updated format to be consistent with CE package
marcink -
r226:6895402c default
parent child Browse files
Show More
@@ -1,154 +1,157 b''
1 # Nix environment for the community edition
1 # Nix environment for the community edition
2 #
2 #
3 # This shall be as lean as possible, just producing the rhodecode-vcsserver
3 # This shall be as lean as possible, just producing the rhodecode-vcsserver
4 # derivation. For advanced tweaks to pimp up the development environment we use
4 # derivation. For advanced tweaks to pimp up the development environment we use
5 # "shell.nix" so that it does not have to clutter this file.
5 # "shell.nix" so that it does not have to clutter this file.
6
6
7 { pkgs ? (import <nixpkgs> {})
7 { pkgs ? (import <nixpkgs> {})
8 , pythonPackages ? "python27Packages"
8 , pythonPackages ? "python27Packages"
9 , pythonExternalOverrides ? self: super: {}
9 , pythonExternalOverrides ? self: super: {}
10 , doCheck ? true
10 , doCheck ? true
11 }:
11 }:
12
12
13 let pkgs_ = pkgs; in
13 let pkgs_ = pkgs; in
14
14
15 let
15 let
16 pkgs = pkgs_.overridePackages (self: super: {
16 pkgs = pkgs_.overridePackages (self: super: {
17 # bump GIT version
17 # bump GIT version
18 git = pkgs.lib.overrideDerivation pkgs_.git (oldAttrs: {
18 git = pkgs.lib.overrideDerivation pkgs_.git (oldAttrs: {
19 name = "git-2.9.3";
19 name = "git-2.9.3";
20 src = pkgs.fetchurl {
20 src = pkgs.fetchurl {
21 url = "https://www.kernel.org/pub/software/scm/git/git-2.9.3.tar.xz";
21 url = "https://www.kernel.org/pub/software/scm/git/git-2.9.3.tar.xz";
22 sha256 = "0qzs681a64k3shh5p0rg41l1z16fbk5sj0xga45k34hp1hsp654z";
22 sha256 = "0qzs681a64k3shh5p0rg41l1z16fbk5sj0xga45k34hp1hsp654z";
23 };
23 };
24
24
25 });
25 });
26
26
27 # Override subversion derivation to
27 # Override subversion derivation to
28 # - activate python bindings
28 # - activate python bindings
29 subversion = let
29 subversion = let
30 subversionWithPython = super.subversion.override {
30 subversionWithPython = super.subversion.override {
31 httpSupport = true;
31 httpSupport = true;
32 pythonBindings = true;
32 pythonBindings = true;
33 python = self.python27Packages.python;
33 python = self.python27Packages.python;
34 };
34 };
35
35
36 in
36 in
37
37
38 pkgs.lib.overrideDerivation subversionWithPython (oldAttrs: {
38 pkgs.lib.overrideDerivation subversionWithPython (oldAttrs: {
39 patches = (oldAttrs.patches or []) ++
39 patches = (oldAttrs.patches or []) ++
40 pkgs.lib.optionals pkgs.stdenv.isDarwin [
40 pkgs.lib.optionals pkgs.stdenv.isDarwin [
41 # johbo: "import svn.client" fails on darwin currently.
41 # johbo: "import svn.client" fails on darwin currently.
42 ./pkgs/subversion-1.9.4-darwin.patch
42 ./pkgs/subversion-1.9.4-darwin.patch
43 ];
43 ];
44 });
44 });
45
45
46 });
46 });
47
47
48 inherit (pkgs.lib) fix extends;
48 inherit (pkgs.lib) fix extends;
49 basePythonPackages = with builtins; if isAttrs pythonPackages
49 basePythonPackages = with builtins; if isAttrs pythonPackages
50 then pythonPackages
50 then pythonPackages
51 else getAttr pythonPackages pkgs;
51 else getAttr pythonPackages pkgs;
52
52
53 elem = builtins.elem;
53 elem = builtins.elem;
54 basename = path: with pkgs.lib; last (splitString "/" path);
54 basename = path: with pkgs.lib; last (splitString "/" path);
55 startsWith = prefix: full: let
55 startsWith = prefix: full: let
56 actualPrefix = builtins.substring 0 (builtins.stringLength prefix) full;
56 actualPrefix = builtins.substring 0 (builtins.stringLength prefix) full;
57 in actualPrefix == prefix;
57 in actualPrefix == prefix;
58
58
59 src-filter = path: type: with pkgs.lib;
59 src-filter = path: type: with pkgs.lib;
60 let
60 let
61 ext = last (splitString "." path);
61 ext = last (splitString "." path);
62 in
62 in
63 !elem (basename path) [".hg" ".git" "__pycache__" ".eggs"
63 !elem (basename path) [".hg" ".git" "__pycache__" ".eggs"
64 "node_modules" "build" "data" "tmp"] &&
64 "node_modules" "build" "data" "tmp"] &&
65 !elem ext ["egg-info" "pyc"] &&
65 !elem ext ["egg-info" "pyc"] &&
66 !startsWith "result" path;
66 !startsWith "result" path;
67
67
68 rhodecode-vcsserver-src = builtins.filterSource src-filter ./.;
68 rhodecode-vcsserver-src = builtins.filterSource src-filter ./.;
69
69
70 pythonGeneratedPackages = self: basePythonPackages.override (a: {
70 pythonGeneratedPackages = self: basePythonPackages.override (a: {
71 inherit self;
71 inherit self;
72 }) // (scopedImport {
72 }) // (scopedImport {
73 self = self;
73 self = self;
74 super = basePythonPackages;
74 super = basePythonPackages;
75 inherit pkgs;
75 inherit pkgs;
76 inherit (pkgs) fetchurl fetchgit;
76 inherit (pkgs) fetchurl fetchgit;
77 } ./pkgs/python-packages.nix);
77 } ./pkgs/python-packages.nix);
78
78
79 pythonOverrides = import ./pkgs/python-packages-overrides.nix {
79 pythonOverrides = import ./pkgs/python-packages-overrides.nix {
80 inherit basePythonPackages pkgs;
80 inherit basePythonPackages pkgs;
81 };
81 };
82
82
83 version = builtins.readFile ./vcsserver/VERSION;
83 version = builtins.readFile ./vcsserver/VERSION;
84
84
85 pythonLocalOverrides = self: super: {
85 pythonLocalOverrides = self: super: {
86 rhodecode-vcsserver = super.rhodecode-vcsserver.override (attrs: {
86 rhodecode-vcsserver = super.rhodecode-vcsserver.override (attrs: {
87 inherit doCheck version;
87 inherit doCheck version;
88
88
89 name = "rhodecode-vcsserver-${version}";
89 name = "rhodecode-vcsserver-${version}";
90 releaseName = "RhodeCodeVCSServer-${version}";
90 releaseName = "RhodeCodeVCSServer-${version}";
91 src = rhodecode-vcsserver-src;
91 src = rhodecode-vcsserver-src;
92 dontStrip = true; # prevent strip, we don't need it.
92 dontStrip = true; # prevent strip, we don't need it.
93
93
94 propagatedBuildInputs = attrs.propagatedBuildInputs ++ ([
94 propagatedBuildInputs = attrs.propagatedBuildInputs ++ ([
95 pkgs.git
95 pkgs.git
96 pkgs.subversion
96 pkgs.subversion
97 ]);
97 ]);
98
98
99 # TODO: johbo: Make a nicer way to expose the parts. Maybe
99 # TODO: johbo: Make a nicer way to expose the parts. Maybe
100 # pkgs/default.nix?
100 # pkgs/default.nix?
101 passthru = {
101 passthru = {
102 pythonPackages = self;
102 pythonPackages = self;
103 };
103 };
104
104
105 # Add VCSServer bin directory to path so that tests can find 'vcsserver'.
105 # Add VCSServer bin directory to path so that tests can find 'vcsserver'.
106 preCheck = ''
106 preCheck = ''
107 export PATH="$out/bin:$PATH"
107 export PATH="$out/bin:$PATH"
108 '';
108 '';
109
109
110 # put custom attrs here
110 # put custom attrs here
111 checkPhase = ''
111 checkPhase = ''
112 runHook preCheck
112 runHook preCheck
113 PYTHONHASHSEED=random py.test -p no:sugar -vv --cov-config=.coveragerc --cov=vcsserver --cov-report=term-missing vcsserver
113 PYTHONHASHSEED=random py.test -p no:sugar -vv --cov-config=.coveragerc --cov=vcsserver --cov-report=term-missing vcsserver
114 runHook postCheck
114 runHook postCheck
115 '';
115 '';
116
116
117 postInstall = ''
117 postInstall = ''
118 echo "Writing meta information for rccontrol to nix-support/rccontrol"
118 echo "Writing meta information for rccontrol to nix-support/rccontrol"
119 mkdir -p $out/nix-support/rccontrol
119 mkdir -p $out/nix-support/rccontrol
120 cp -v vcsserver/VERSION $out/nix-support/rccontrol/version
120 cp -v vcsserver/VERSION $out/nix-support/rccontrol/version
121 echo "DONE: Meta information for rccontrol written"
121 echo "DONE: Meta information for rccontrol written"
122
122
123 # python based programs need to be wrapped
123 ln -s ${self.pyramid}/bin/* $out/bin/
124 ln -s ${self.pyramid}/bin/* $out/bin/
124 ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
125 ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
125
126
126 # Symlink version control utilities
127 # Symlink version control utilities
127 #
128 #
128 # We ensure that always the correct version is available as a symlink.
129 # We ensure that always the correct version is available as a symlink.
129 # So that users calling them via the profile path will always use the
130 # So that users calling them via the profile path will always use the
130 # correct version.
131 # correct version.
131 ln -s ${pkgs.git}/bin/git $out/bin
132 ln -s ${pkgs.git}/bin/git $out/bin
132 ln -s ${self.mercurial}/bin/hg $out/bin
133 ln -s ${self.mercurial}/bin/hg $out/bin
133 ln -s ${pkgs.subversion}/bin/svn* $out/bin
134 ln -s ${pkgs.subversion}/bin/svn* $out/bin
134
135
135 for file in $out/bin/*; do
136 for file in $out/bin/*;
137 do
136 wrapProgram $file \
138 wrapProgram $file \
137 --set PATH $PATH \
139 --set PATH $PATH \
138 --set PYTHONPATH $PYTHONPATH \
140 --set PYTHONPATH $PYTHONPATH \
139 --set PYTHONHASHSEED random
141 --set PYTHONHASHSEED random
140 done
142 done
143
141 '';
144 '';
142
145
143 });
146 });
144 };
147 };
145
148
146 # Apply all overrides and fix the final package set
149 # Apply all overrides and fix the final package set
147 myPythonPackages =
150 myPythonPackages =
148 (fix
151 (fix
149 (extends pythonExternalOverrides
152 (extends pythonExternalOverrides
150 (extends pythonLocalOverrides
153 (extends pythonLocalOverrides
151 (extends pythonOverrides
154 (extends pythonOverrides
152 pythonGeneratedPackages))));
155 pythonGeneratedPackages))));
153
156
154 in myPythonPackages.rhodecode-vcsserver
157 in myPythonPackages.rhodecode-vcsserver
General Comments 0
You need to be logged in to leave comments. Login now