biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / monitoring / karma / default.nix
blobc27bffa3598fe77744dc21dcbc8353c617c164b2
1 { lib
2 , stdenv
3 , buildGoModule
4 , fetchFromGitHub
5 , fetchNpmDeps
6 , nixosTests
7 , nodejs
8 , npmHooks
9 }:
11 buildGoModule rec {
12   pname = "karma";
13   version = "0.115";
15   src = fetchFromGitHub {
16     owner = "prymitive";
17     repo = "karma";
18     rev = "v${version}";
19     hash = "sha256-SW/nmJcSk/LmoKLuD5stsSaRGaJctl6hVSODNCT9i64=";
20   };
22   vendorHash = "sha256-Y55AaB8KRV+Tq/Trg1BOOwziyt+yJ2b3iVYA6bDebQY=";
24   npmDeps = fetchNpmDeps {
25     src = "${src}/ui";
26     hash = "sha256-/L+eU0xwaopL2im9epiZiZ23dUqJ+3OwhWw/rIZC6hI=";
27   };
29   npmRoot = "ui";
31   nativeBuildInputs = [
32     nodejs
33     npmHooks.npmConfigHook
34   ];
36   overrideModAttrs = oldAttrs: {
37     nativeBuildInputs = lib.filter (drv: drv != npmHooks.npmConfigHook) oldAttrs.nativeBuildInputs;
38   };
40   postPatch = ''
41     # Since we're using node2nix packages, the NODE_INSTALL hook isn't needed in the makefile
42     sed -i \
43       -e 's/$(NODE_INSTALL)//g' ./ui/Makefile \
44       -e 's~NODE_PATH    := $(shell npm bin)~NODE_PATH    := ./node_modules~g' ./ui/Makefile \
45       -e 's~NODE_MODULES := $(shell dirname `npm bin`)~NODE_MODULES := ./~g' ./ui/Makefile
46   '';
48   buildPhase = ''
49     runHook preBuild
51     VERSION="v${version}" make -j$NIX_BUILD_CORES
53     runHook postBuild
54   '';
56   installPhase = ''
57     install -Dm 755 ./karma $out/bin/karma
58   '';
60   passthru.tests.karma = nixosTests.karma;
62   meta = with lib; {
63     changelog = "https://github.com/prymitive/karma/blob/${src.rev}/CHANGELOG.md";
64     description = "Alert dashboard for Prometheus Alertmanager";
65     mainProgram = "karma";
66     homepage = "https://karma-dashboard.io/";
67     license = licenses.asl20;
68     maintainers = with maintainers; [ nukaduka ];
69   };