Dmitriy Pleshevskiy
dab505e62b
nix: refac overlays nix: fix path to packages nix: use mkMerge nix: rename nixpkgs-unstable input user: remove my tools user: build use unstable packages for nil cannot be built on stable because it requires rustc 1.66 or newer, while the currently active rustc version is 1.64.0 host/magenta: use unstable gitea nix: fix rollback command nix: fix overlays user: use unstable haskell packages to build xmonad user: don't build woodpecker-cli host: import nix module for canigou and magenta pkgs: fix woodpecker host/home: use unstable kernel to use rtl88x2bu driver host: use unstable ipfs move ipfs to shared config user: use unstable woodpecker-cli Reviewed-on: #13
47 lines
895 B
Nix
47 lines
895 B
Nix
{ callPackage, fetchYarnDeps, mkYarnPackage }:
|
|
|
|
let
|
|
common = callPackage ./common.nix { };
|
|
in
|
|
mkYarnPackage {
|
|
pname = "woodpecker-frontend";
|
|
inherit (common) version;
|
|
|
|
src = "${common.src}/web";
|
|
|
|
packageJSON = ./woodpecker-package.json;
|
|
offlineCache = fetchYarnDeps {
|
|
yarnLock = "${common.src}/web/yarn.lock";
|
|
sha256 = common.yarnSha256;
|
|
};
|
|
|
|
patchPhase = ''
|
|
cd src/assets/locales
|
|
rm $(ls | grep -v en.json)
|
|
cd -
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
yarn build
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
cp -R deps/woodpecker-ci/dist $out
|
|
echo "${common.version}" > "$out/version"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# Do not attempt generating a tarball for woodpecker-frontend again.
|
|
doDist = false;
|
|
|
|
meta = common.meta // {
|
|
description = "Woodpecker Continuous Integration server frontend";
|
|
};
|
|
}
|