depot/web/quotes/default.nix

85 lines
2.2 KiB
Nix
Raw Normal View History

2021-01-19 03:51:22 +00:00
{ depot, pkgs, ... }:
let
python = pkgs.python3.withPackages (ps: with ps; [
django_3
gunicorn
2021-01-19 23:43:43 +00:00
psycopg2
2021-01-19 03:51:22 +00:00
(depot.pkgs.django-allauth.override {
django = django_3;
})
2021-01-20 02:04:30 +00:00
(depot.pkgs.django-tailwind.override {
django = django_3;
})
2021-01-19 03:51:22 +00:00
]);
2021-01-20 02:04:30 +00:00
filterSourcePred = (path: type: type != "directory" || (
baseNameOf path != "__pycache__" &&
baseNameOf path != "node_modules" &&
true));
2021-01-19 03:51:22 +00:00
in
pkgs.stdenvNoCC.mkDerivation rec {
name = "quotes";
2021-01-20 02:04:30 +00:00
src = builtins.filterSource filterSourcePred ./.;
2021-01-19 03:51:22 +00:00
2021-01-20 02:04:30 +00:00
buildInputs = with pkgs; [ makeWrapper nodejs ];
2021-01-19 03:51:22 +00:00
propagatedBuildInputs = [ python ];
2021-01-20 02:04:30 +00:00
nodeModules = pkgs.stdenvNoCC.mkDerivation rec {
name = "quotes-node_modules";
src = builtins.filterSource filterSourcePred ./theme/static_src;
2021-04-04 16:33:43 +00:00
outputHash = "sha256:15q41in79p753y85qwbbd6v6fyays9q28cpqp0dc3pnvma096whq";
2021-01-20 02:04:30 +00:00
outputHashMode = "recursive";
buildInputs = with pkgs; [ nodejs ];
buildPhase = ''
mkdir $NIX_BUILD_TOP/tmp
export HOME=$NIX_BUILD_TOP/tmp
npm i
'';
installPhase = ''
cp -R node_modules $out
'';
};
buildPhase = ''
cp -R $nodeModules theme/static_src/node_modules
'';
2021-01-19 03:51:22 +00:00
installPhase = ''
sitepkgdir="$out/lib/${python.libPrefix}/site-packages"
pkgdir="$sitepkgdir/quotes"
mkdir -p $pkgdir
cp -R \
2021-01-20 02:04:30 +00:00
quotesapp \
quotedb \
templates \
static \
discordguild \
theme \
2021-01-19 03:51:22 +00:00
$pkgdir
mkdir "$out/bin"
makeWrapper "${python}/bin/gunicorn" "$out/bin/quotes" \
--add-flags "quotes.quotesapp.wsgi" \
--suffix PYTHONPATH : "$sitepkgdir"
2021-01-19 23:43:43 +00:00
makeWrapper "${python}/bin/django-admin" "$out/bin/quotes-manage" \
--set DJANGO_SETTINGS_MODULE "quotes.quotesapp.prod_settings" \
--suffix PYTHONPATH : "$sitepkgdir"
2021-01-19 03:51:22 +00:00
mkdir -p "$out/share/static"
export STATIC_ROOT="$out/share/static"
export DJANGO_SETTINGS_MODULE=quotes.quotesapp.settings
export PYTHONPATH=$PYTHONPATH''${PYTHONPATH:+':'}"$sitepkgdir"
2021-01-20 02:04:30 +00:00
django-admin tailwind build
2021-01-19 03:51:22 +00:00
django-admin collectstatic --no-input
2021-01-20 02:04:30 +00:00
chmod -R +w $pkgdir/theme/static $pkgdir/theme/static_src
rm -rf $pkgdir/theme/static $pkgdir/theme/static_src
2021-01-19 03:51:22 +00:00
'';
passthru.pythonEnv = python;
}