prometheus-dovecot-exporter: 2018-01-18 -> 0.1.1

authored by WilliButz and committed by Robin Gloster 059a2a8c b5ca7fef

+12 -13
+8 -8
pkgs/servers/monitoring/prometheus/dovecot-exporter-deps.nix
··· 32 32 fetch = { 33 33 type = "git"; 34 34 url = "https://github.com/golang/protobuf"; 35 - rev = "c65a0412e71e8b9b3bfd22925720d23c0f054237"; 36 - sha256 = "1ch3czyzq5abl6zm1l0dfsi09xj43ql9jcbmbhfhxz954pw03v3v"; 35 + rev = "bbd03ef6da3a115852eaf24c8a1c46aeb39aa175"; 36 + sha256 = "1pyli3dcagi7jzpiazph4fhkz7a3z4bhd25nwbb7g0iy69b8z1g4"; 37 37 }; 38 38 } 39 39 { ··· 50 50 fetch = { 51 51 type = "git"; 52 52 url = "https://github.com/prometheus/client_golang"; 53 - rev = "06bc6e01f4baf4ee783ffcd23abfcb0b0f9dfada"; 54 - sha256 = "0dvv21214sn702kc25y5l0gd9d11358976d3w31fgwx7456mjx26"; 53 + rev = "c3324c1198cf3374996e9d3098edd46a6b55afc9"; 54 + sha256 = "19qcz5bpzj5kqyhmbq5kxr8nrqqlszazzq6w0wldis1yk1wwww00"; 55 55 }; 56 56 } 57 57 { ··· 68 68 fetch = { 69 69 type = "git"; 70 70 url = "https://github.com/prometheus/common"; 71 - rev = "89604d197083d4781071d3c65855d24ecfb0a563"; 72 - sha256 = "169rdlaf2mk9z4fydz7ajmngyhmf3q1lk96yhvx46bn986x5xkyn"; 71 + rev = "e4aa40a9169a88835b849a6efb71e05dc04b88f0"; 72 + sha256 = "0m1n616d694jca0qjwjn5ci7scfgm2jpi94dhi356arm9lhda4jc"; 73 73 }; 74 74 } 75 75 { ··· 77 77 fetch = { 78 78 type = "git"; 79 79 url = "https://github.com/prometheus/procfs"; 80 - rev = "cb4147076ac75738c9a7d279075a253c0cc5acbd"; 81 - sha256 = "0zhlrik0f9q1lj6cisgnxgbz4darbcix52hm5abi24l2ahchf5ca"; 80 + rev = "54d17b57dd7d4a3aa092476596b3f8a933bde349"; 81 + sha256 = "1b5218hi6k9i637k6xc7ynpll577zbnrhjm9jr2iczy3j0rr4rvr"; 82 82 }; 83 83 } 84 84 {
+4 -5
pkgs/servers/monitoring/prometheus/dovecot-exporter.nix
··· 1 1 { stdenv, buildGoPackage, fetchFromGitHub }: 2 2 3 3 buildGoPackage rec { 4 - name = "dovecot_exporter-unstable-${version}"; 5 - version = "2018-01-18"; 6 - rev = "4e831356533e2321031df73ebd25dd55dbd8d385"; 4 + name = "dovecot_exporter-${version}"; 5 + version = "0.1.1"; 7 6 8 7 goPackagePath = "github.com/kumina/dovecot_exporter"; 9 8 10 9 src = fetchFromGitHub { 11 10 owner = "kumina"; 12 11 repo = "dovecot_exporter"; 13 - inherit rev; 14 - sha256 = "0iky1i7m5mlknkhlpsxpjgigssg5m02nx5y7i4biddkqilfic74n"; 12 + rev = version; 13 + sha256 = "0i7nfgkb5jqdbgr16i29jdsvh69dx9qgn6nazpw78k0lgy7mpidn"; 15 14 }; 16 15 17 16 goDeps = ./dovecot-exporter-deps.nix;