lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 24 lines 610 B view raw
1{ stdenv, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 name = "dovecot_exporter-${version}"; 5 version = "0.1.1"; 6 7 goPackagePath = "github.com/kumina/dovecot_exporter"; 8 9 src = fetchFromGitHub { 10 owner = "kumina"; 11 repo = "dovecot_exporter"; 12 rev = version; 13 sha256 = "0i7nfgkb5jqdbgr16i29jdsvh69dx9qgn6nazpw78k0lgy7mpidn"; 14 }; 15 16 goDeps = ./dovecot-exporter-deps.nix; 17 18 meta = with stdenv.lib; { 19 inherit (src.meta) homepage; 20 description = "Prometheus metrics exporter for Dovecot"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ willibutz ]; 23 }; 24}