6d4aeb4377
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ lib, pkgs, fetchFromGitHub, nodejs, nodePackages, 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 = "c348d6897324aac1d899a977f9c7d467ea934796";
|
|
sha256 = "1nvglb1wahz20my29jhi3j7824d12pdqf0xfpymnganzfkpj9zjk";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|