Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / monitoring / karma / default.nix
blob95f66e1dd7b34ef6f70100677b8b9d8914a80a9d
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , fetchNpmDeps
5 , nixosTests
6 , nodejs
7 , npmHooks
8 }:
10 buildGoModule rec {
11   pname = "karma";
12   version = "0.115";
14   src = fetchFromGitHub {
15     owner = "prymitive";
16     repo = "karma";
17     rev = "v${version}";
18     hash = "sha256-SW/nmJcSk/LmoKLuD5stsSaRGaJctl6hVSODNCT9i64=";
19   };
21   vendorHash = "sha256-Y55AaB8KRV+Tq/Trg1BOOwziyt+yJ2b3iVYA6bDebQY=";
23   npmDeps = fetchNpmDeps {
24     src = "${src}/ui";
25     hash = "sha256-/L+eU0xwaopL2im9epiZiZ23dUqJ+3OwhWw/rIZC6hI=";
26   };
28   npmRoot = "ui";
30   nativeBuildInputs = [
31     nodejs
32     npmHooks.npmConfigHook
33   ];
35   overrideModAttrs = oldAttrs: {
36     nativeBuildInputs = lib.filter (drv: drv != npmHooks.npmConfigHook) oldAttrs.nativeBuildInputs;
37   };
39   postPatch = ''
40     # Since we're using node2nix packages, the NODE_INSTALL hook isn't needed in the makefile
41     sed -i \
42       -e 's/$(NODE_INSTALL)//g' ./ui/Makefile \
43       -e 's~NODE_PATH    := $(shell npm bin)~NODE_PATH    := ./node_modules~g' ./ui/Makefile \
44       -e 's~NODE_MODULES := $(shell dirname `npm bin`)~NODE_MODULES := ./~g' ./ui/Makefile
45   '';
47   buildPhase = ''
48     runHook preBuild
50     VERSION="v${version}" make -j$NIX_BUILD_CORES
52     runHook postBuild
53   '';
55   installPhase = ''
56     install -Dm 755 ./karma $out/bin/karma
57   '';
59   passthru.tests.karma = nixosTests.karma;
61   meta = with lib; {
62     changelog = "https://github.com/prymitive/karma/blob/${src.rev}/CHANGELOG.md";
63     description = "Alert dashboard for Prometheus Alertmanager";
64     mainProgram = "karma";
65     homepage = "https://karma-dashboard.io/";
66     license = licenses.asl20;
67     maintainers = with maintainers; [ nukaduka ];
68   };