##// END OF EJS Templates
Added tag v4.13.3 for changeset 7dc62c090881
Added tag v4.13.3 for changeset 7dc62c090881

File last commit:

r2824:5ac461b5 default
r3047:59b28fe5 stable
Show More
default.nix
258 lines | 8.1 KiB | text/x-nix | NixLexer
project: added all source files and assets
r1 # Nix environment for the community edition
#
nix: updated to 18.03 nix packages...
r2824 # This shall be as lean as possible, just producing the enterprise-ce
project: added all source files and assets
r1 # derivation. For advanced tweaks to pimp up the development environment we use
# "shell.nix" so that it does not have to clutter this file.
nix: updated to 18.03 nix packages...
r2824 #
# Configuration, set values in "~/.nixpkgs/config.nix".
# example
# {
# # Thoughts on how to configure the dev environment
# rc = {
# codeInternalUrl = "https://usr:token@internal-code.rhodecode.com";
# sources = {
# rhodecode-vcsserver = "/home/user/work/rhodecode-vcsserver";
# rhodecode-enterprise-ce = "/home/user/work/rhodecode-enterprise-ce";
# rhodecode-enterprise-ee = "/home/user/work/rhodecode-enterprise-ee";
# };
# };
# }
project: added all source files and assets
r1
Martin Bornhold
nix: Pass the backwards compatible fetchgit to python and node packages.
r926 args@
{ pythonPackages ? "python27Packages"
project: added all source files and assets
r1 , pythonExternalOverrides ? self: super: {}
nix: updated to 18.03 nix packages...
r2824 , doCheck ? false
Martin Bornhold
nix: Pass the backwards compatible fetchgit to python and node packages.
r926 , ...
project: added all source files and assets
r1 }:
let
Martin Bornhold
nix: Pass the backwards compatible fetchgit to python and node packages.
r926 # Use nixpkgs from args or import them. We use this indirect approach
# through args to be able to use the name `pkgs` for our customized packages.
# Otherwise we will end up with an infinite recursion.
nix: updated to 18.03 nix packages...
r2824 pkgs = args.pkgs or (import <nixpkgs> { });
Martin Bornhold
nix: Pass the backwards compatible fetchgit to python and node packages.
r926
nix: updated to 18.03 nix packages...
r2824 # Works with the new python-packages, still can fallback to the old
# variant.
basePythonPackagesUnfix = basePythonPackages.__unfix__ or (
self: basePythonPackages.override (a: { inherit self; }));
Martin Bornhold
nix: Pass the backwards compatible fetchgit to python and node packages.
r926
# Evaluates to the last segment of a file system path.
basename = path: with pkgs.lib; last (splitString "/" path);
# source code filter used as arugment to builtins.filterSource.
src-filter = path: type: with pkgs.lib;
let
ext = last (splitString "." path);
in
!builtins.elem (basename path) [
nix: updated to 18.03 nix packages...
r2824 ".git" ".hg" "__pycache__" ".eggs" ".idea" ".dev"
Martin Bornhold
nix: Pass the backwards compatible fetchgit to python and node packages.
r926 "bower_components" "node_modules"
"build" "data" "result" "tmp"] &&
!builtins.elem ext ["egg-info" "pyc"] &&
# TODO: johbo: This check is wrong, since "path" contains an absolute path,
# it would still be good to restore it since we want to ignore "result-*".
!hasPrefix "result" path;
project: added all source files and assets
r1
nix: updated to 18.03 nix packages...
r2824 sources =
let
inherit (pkgs.lib) all isString attrValues;
sourcesConfig = pkgs.config.rc.sources or {};
in
# Ensure that sources are configured as strings. Using a path
# would result in a copy into the nix store.
assert all isString (attrValues sourcesConfig);
sourcesConfig;
project: added all source files and assets
r1
nix: updated to 18.03 nix packages...
r2824 version = builtins.readFile "${rhodecode-enterprise-ce-src}/rhodecode/VERSION";
project: added all source files and assets
r1 rhodecode-enterprise-ce-src = builtins.filterSource src-filter ./.;
nix: updated to 18.03 nix packages...
r2824 buildBowerComponents = pkgs.buildBowerComponents;
nix: Link node modules based on node2nix
r708 nodeEnv = import ./pkgs/node-default.nix {
inherit pkgs;
project: added all source files and assets
r1 };
nix: Link node modules based on node2nix
r708 nodeDependencies = nodeEnv.shell.nodeDependencies;
project: added all source files and assets
r1
packaging: Backport bower support utilities...
r725 bowerComponents = buildBowerComponents {
packaging: Improve name of bower components derivation...
r724 name = "enterprise-ce-${version}";
dependencies: Update bower packages...
r719 generated = ./pkgs/bower-packages.nix;
src = rhodecode-enterprise-ce-src;
};
nix: updated to 18.03 nix packages...
r2824 rhodecode-testdata-src = sources.rhodecode-testdata or (
pkgs.fetchhg {
url = "https://code.rhodecode.com/upstream/rc_testdata";
rev = "v0.10.0";
sha256 = "0zn9swwvx4vgw4qn8q3ri26vvzgrxn15x6xnjrysi1bwmz01qjl0";
});
project: added all source files and assets
r1
nix: updated to 18.03 nix packages...
r2824 rhodecode-testdata = import "${rhodecode-testdata-src}/default.nix" {
inherit
doCheck
pkgs
pythonPackages;
project: added all source files and assets
r1 };
pythonLocalOverrides = self: super: {
rhodecode-enterprise-ce =
let
packaging: Link bower packages
r720 linkNodeAndBowerPackages = ''
nix: export CE sources path
r743 export RHODECODE_CE_PATH=${rhodecode-enterprise-ce-src}
nix: updated to 18.03 nix packages...
r2824
echo "[BEGIN]: Link node packages"
project: added all source files and assets
r1 rm -fr node_modules
nix: Link node modules based on node2nix
r708 mkdir node_modules
# johbo: Linking individual packages allows us to run "npm install"
# inside of a shell to try things out. Re-entering the shell will
# restore a clean environment.
ln -s ${nodeDependencies}/lib/node_modules/* node_modules/
nix: updated to 18.03 nix packages...
r2824 echo "[DONE]: Link node packages"
nix: Link node modules based on node2nix
r708
nix: updated to 18.03 nix packages...
r2824 echo "[BEGIN]: Link bower packages"
packaging: Link bower packages
r720 rm -fr bower_components
mkdir bower_components
nix: updated to 18.03 nix packages...
r2824 ln -s ${bowerComponents}/bower_components/* bower_components/
echo "[DONE]: Link bower packages"
'';
packaging: Link bower packages
r720
nix: updated to 18.03 nix packages...
r2824 releaseName = "RhodeCodeEnterpriseCE-${version}";
project: added all source files and assets
r1 in super.rhodecode-enterprise-ce.override (attrs: {
release: Provide attribute releaseName...
r241 inherit
doCheck
version;
nix: updated to 18.03 nix packages...
r2824
project: added all source files and assets
r1 name = "rhodecode-enterprise-ce-${version}";
nix: updated to 18.03 nix packages...
r2824 releaseName = releaseName;
project: added all source files and assets
r1 src = rhodecode-enterprise-ce-src;
packaging: don't run strip on sources for python packages
r1493 dontStrip = true; # prevent strip, we don't need it.
project: added all source files and assets
r1
nix: updated to 18.03 nix packages...
r2824 # expose following attributed outside
project: added all source files and assets
r1 passthru = {
packaging: Expose the local overrides via passthru.
r74 inherit
nix: updated to 18.03 nix packages...
r2824 rhodecode-testdata
dependencies: Update bower packages...
r719 bowerComponents
packaging: Link bower packages
r720 linkNodeAndBowerPackages
nix: Add linkNodeModules to passthru...
r465 myPythonPackagesUnfix
nix: updated to 18.03 nix packages...
r2824 pythonLocalOverrides
pythonCommunityOverrides;
project: added all source files and assets
r1 pythonPackages = self;
};
nix: updated to 18.03 nix packages...
r2824 buildInputs =
attrs.buildInputs or [] ++ [
rhodecode-testdata
pkgs.nodePackages.bower
pkgs.nodePackages.grunt-cli
];
#NOTE: option to inject additional propagatedBuildInputs
propagatedBuildInputs =
attrs.propagatedBuildInputs or [] ++ [
];
project: added all source files and assets
r1 LC_ALL = "en_US.UTF-8";
LOCALE_ARCHIVE =
nix: updated to 18.03 nix packages...
r2824 if pkgs.stdenv.isLinux
project: added all source files and assets
r1 then "${pkgs.glibcLocales}/lib/locale/locale-archive"
else "";
nix: updated to 18.03 nix packages...
r2824 # Add bin directory to path so that tests can find 'rhodecode'.
project: added all source files and assets
r1 preCheck = ''
export PATH="$out/bin:$PATH"
'';
nix: updated to 18.03 nix packages...
r2824 # custom check phase for testing
checkPhase = ''
runHook preCheck
PYTHONHASHSEED=random py.test -vv -p no:sugar -r xw --cov-config=.coveragerc --cov=rhodecode --cov-report=term-missing rhodecode
runHook postCheck
'';
project: added all source files and assets
r1 postCheck = ''
nix: updated to 18.03 nix packages...
r2824 echo "Cleanup of rhodecode/tests"
project: added all source files and assets
r1 rm -rf $out/lib/${self.python.libPrefix}/site-packages/rhodecode/tests
'';
nix: updated to 18.03 nix packages...
r2824 preBuild = ''
echo "Building frontend assets"
${linkNodeAndBowerPackages}
project: added all source files and assets
r1 grunt
rm -fr node_modules
'';
postInstall = ''
nix: updated to 18.03 nix packages...
r2824 echo "Writing enterprise-ce meta information for rccontrol to nix-support/rccontrol"
nix: update default.nix to be consistent with ordering with vcsserver.
r1773 mkdir -p $out/nix-support/rccontrol
cp -v rhodecode/VERSION $out/nix-support/rccontrol/version
nix: updated to 18.03 nix packages...
r2824 echo "[DONE]: enterprise-ce meta information for rccontrol written"
mkdir -p $out/etc
cp configs/production.ini $out/etc
echo "[DONE]: saved enterprise-ce production.ini into $out/etc"
nix: update default.nix to be consistent with ordering with vcsserver.
r1773
project: added all source files and assets
r1 # python based programs need to be wrapped
nix: updated to 18.03 nix packages...
r2824 mkdir -p $out/bin
# rhodecode-tools
ln -s ${self.rhodecode-tools}/bin/rhodecode-* $out/bin/
# required binaries from dependencies
#ln -s ${self.python}/bin/python $out/bin
nix: update default.nix to be consistent with ordering with vcsserver.
r1773 ln -s ${self.pyramid}/bin/* $out/bin/
ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
project: added all source files and assets
r1 ln -s ${self.supervisor}/bin/supervisor* $out/bin/
dependencies: made all dependencies lowercase, helps with diffing other projects, and keeps proper order.
r2718 ln -s ${self.pastescript}/bin/paster $out/bin/
notifications: support real-time notifications with websockets via channelstream
r526 ln -s ${self.channelstream}/bin/channelstream $out/bin/
nix: expose celery binaries
r2377 ln -s ${self.celery}/bin/celery $out/bin/
nix: updated to 18.03 nix packages...
r2824 echo "[DONE]: created symlinks into $out/bin"
project: added all source files and assets
r1
nix: update default.nix to be consistent with ordering with vcsserver.
r1773 for file in $out/bin/*;
do
project: added all source files and assets
r1 wrapProgram $file \
nix: updated to 18.03 nix packages...
r2824 --prefix PATH : $PATH \
--prefix PYTHONPATH : $PYTHONPATH \
--set PYTHONHASHSEED random
project: added all source files and assets
r1 done
nix: updated to 18.03 nix packages...
r2824 echo "[DONE]: enterprise-ce binary wrapping"
project: added all source files and assets
r1
if [ ! -f rhodecode/public/js/scripts.js ]; then
echo "Missing scripts.js"
exit 1
fi
if [ ! -f rhodecode/public/css/style.css ]; then
echo "Missing style.css"
exit 1
fi
'';
});
};
nix: updated to 18.03 nix packages...
r2824 basePythonPackages = with builtins;
if isAttrs pythonPackages then
pythonPackages
else
getAttr pythonPackages pkgs;
pythonGeneratedPackages = import ./pkgs/python-packages.nix {
inherit pkgs;
inherit (pkgs) fetchurl fetchgit fetchhg;
};
pythonCommunityOverrides = import ./pkgs/python-packages-overrides.nix {
inherit pkgs basePythonPackages;
};
Martin Bornhold
nix: Use path to rc_testdata from pkgs.config.rc.sources if present.
r211
project: added all source files and assets
r1 # Apply all overrides and fix the final package set
Martin Bornhold
nix: Pass the backwards compatible fetchgit to python and node packages.
r926 myPythonPackagesUnfix = with pkgs.lib;
project: added all source files and assets
r1 (extends pythonExternalOverrides
(extends pythonLocalOverrides
nix: updated to 18.03 nix packages...
r2824 (extends pythonCommunityOverrides
(extends pythonGeneratedPackages
basePythonPackagesUnfix))));
Martin Bornhold
nix: Pass the backwards compatible fetchgit to python and node packages.
r926 myPythonPackages = (pkgs.lib.fix myPythonPackagesUnfix);
project: added all source files and assets
r1
in myPythonPackages.rhodecode-enterprise-ce