02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ lib, pkgs, fetchFromGitHub, nodejs, stdenv, ArchiSteamFarm, ... }:
|
|
|
|
let
|
|
nodePackages = import ./node-composition.nix {
|
|
inherit pkgs nodejs;
|
|
inherit (stdenv.hostPlatform) system;
|
|
};
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JustArchiNET";
|
|
repo = "ASF-ui";
|
|
# updated by the update script
|
|
# this is always the commit that should be used with asf-ui from the latest asf version
|
|
rev = "60a692f2e0d6b7c2bcd2cf363042d4647f246b4b";
|
|
sha256 = "1g49zwghdfgzd5canrrw1c2r4780xyvcaz72p14w036h93fw01z2";
|
|
};
|
|
|
|
in
|
|
nodePackages.package.override {
|
|
inherit src;
|
|
|
|
# upstream isn't tagged, but we are using the latest official commit for that specific asf version (assuming both get updated at the same time)
|
|
version = ArchiSteamFarm.version;
|
|
|
|
nativeBuildInputs = [ pkgs.nodePackages.node-gyp-build ];
|
|
|
|
postInstall = ''
|
|
patchShebangs node_modules/
|
|
npm run build
|
|
cp -r $out/lib/node_modules/asf-ui/dist $out/lib/dist
|
|
rm -rf $out/lib/node_modules/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The official web interface for ASF";
|
|
license = licenses.apsl20;
|
|
homepage = "https://github.com/JustArchiNET/ASF-ui";
|
|
inherit (ArchiSteamFarm.meta) maintainers platforms;
|
|
};
|
|
}
|