anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / ArchiSteamFarm / web-ui / default.nix
blob2e34071a0586b35deb3420ca56f2cafbbbe27b09
1 { lib, fetchFromGitHub, buildNpmPackage, ArchiSteamFarm }:
3 buildNpmPackage rec {
4   pname = "asf-ui";
5   version = "7c5eb33a79736ca57acff776af4bd88816773247";
7   src = fetchFromGitHub {
8     owner = "JustArchiNET";
9     repo = "ASF-ui";
10     # updated by the update script
11     # this is always the commit that should be used with asf-ui from the latest asf version
12     rev = version;
13     hash = "sha256-oOeXyhDnW2jeKGssxzgMIQElkH1uT5IALiXwxUg1ETQ=";
14   };
16   npmDepsHash = "sha256-nofLj2PaL+A/M6F6vteh4SmONmsQ5kLPOZ/jxokubgU=";
18   installPhase = ''
19     runHook preInstall
21     mkdir $out
22     cp -rv dist/* $out/
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Official web interface for ASF";
29     license = licenses.asl20;
30     homepage = "https://github.com/JustArchiNET/ASF-ui";
31     inherit (ArchiSteamFarm.meta) maintainers platforms;
32   };