nixpkgs/pkgs/servers/web-apps/lemmy/ui.nix

79 lines
1.5 KiB
Nix
Raw Normal View History

2021-09-09 14:28:32 +00:00
{ lib
, mkYarnPackage
, libsass
, nodejs
, python3
, pkg-config
, fetchFromGitHub
, fetchYarnDeps
2021-09-09 14:28:32 +00:00
}:
let
pinData = lib.importJSON ./pin.json;
2021-09-09 14:28:32 +00:00
pkgConfig = {
node-sass = {
nativeBuildInputs = [ ];
buildInputs = [ libsass pkg-config python3 ];
postInstall = ''
LIBSASS_EXT=auto yarn --offline run build
rm build/config.gypi
'';
};
};
name = "lemmy-ui";
version = pinData.version;
2021-09-09 14:28:32 +00:00
src = fetchFromGitHub {
owner = "LemmyNet";
repo = name;
rev = version;
fetchSubmodules = true;
sha256 = pinData.uiSha256;
};
in
mkYarnPackage {
2021-09-09 14:28:32 +00:00
inherit src pkgConfig name version;
2021-09-09 14:28:32 +00:00
extraBuildInputs = [ libsass ];
2021-09-09 14:28:32 +00:00
packageJSON = ./package.json;
offlineCache = fetchYarnDeps {
yarnLock = src + "/yarn.lock";
sha256 = pinData.uiYarnDepsSha256;
};
2021-09-09 14:28:32 +00:00
yarnPreBuild = ''
export npm_config_nodedir=${nodejs}
'';
2021-09-09 14:28:32 +00:00
buildPhase = ''
# Yarn writes cache directories etc to $HOME.
export HOME=$PWD/yarn_home
2021-09-09 14:28:32 +00:00
ln -sf $PWD/node_modules $PWD/deps/lemmy-ui/
2021-09-09 14:28:32 +00:00
yarn --offline build:prod
'';
2021-09-09 14:28:32 +00:00
preInstall = ''
mkdir $out
cp -R ./deps/lemmy-ui/dist $out
cp -R ./node_modules $out
'';
2021-09-09 14:28:32 +00:00
distPhase = "true";
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Building a federated alternative to reddit in rust";
homepage = "https://join-lemmy.org/";
license = licenses.agpl3Only;
maintainers = with maintainers; [ happysalada billewanick ];
platforms = platforms.linux;
2021-09-09 14:28:32 +00:00
};
}