prometheus-mesos-exporter: 0.1.0 -> 1.1.2

+4 -90
+4 -7
pkgs/servers/monitoring/prometheus/mesos-exporter.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 pname = "mesos_exporter"; 5 - version = "0.1.0"; 6 - rev = version; 5 + version = "1.1.2"; 7 6 8 7 goPackagePath = "github.com/prometheus/mesos_exporter"; 9 8 10 9 src = fetchFromGitHub { 11 - inherit rev; 12 - owner = "prometheus"; 10 + rev = "v${version}"; 11 + owner = "mesos"; 13 12 repo = "mesos_exporter"; 14 - sha256 = "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm"; 13 + sha256 = "0nvjlpxdhh60wcdw2fdc8h0vn6fxkz0nh7zrx43hjxymvc15ixza"; 15 14 }; 16 - 17 - goDeps = ./mesos-exporter_deps.nix; 18 15 19 16 meta = with lib; { 20 17 description = "Export Mesos metrics to Prometheus";
-83
pkgs/servers/monitoring/prometheus/mesos-exporter_deps.nix
··· 1 - [ 2 - { 3 - goPackagePath = "github.com/golang/protobuf"; 4 - fetch = { 5 - type = "git"; 6 - url = "https://github.com/golang/protobuf"; 7 - rev = "59b73b37c1e45995477aae817e4a653c89a858db"; 8 - sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"; 9 - }; 10 - } 11 - { 12 - goPackagePath = "github.com/prometheus/client_model"; 13 - fetch = { 14 - type = "git"; 15 - url = "https://github.com/prometheus/client_model"; 16 - rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; 17 - sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"; 18 - }; 19 - } 20 - { 21 - goPackagePath = "github.com/beorn7/perks"; 22 - fetch = { 23 - type = "git"; 24 - url = "https://github.com/beorn7/perks"; 25 - rev = "b965b613227fddccbfffe13eae360ed3fa822f8d"; 26 - sha256 = "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"; 27 - }; 28 - } 29 - { 30 - goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; 31 - fetch = { 32 - type = "git"; 33 - url = "https://github.com/matttproud/golang_protobuf_extensions"; 34 - rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a"; 35 - sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"; 36 - }; 37 - } 38 - { 39 - goPackagePath = "github.com/prometheus/client_golang"; 40 - fetch = { 41 - type = "git"; 42 - url = "https://github.com/prometheus/client_golang"; 43 - rev = "6dbab8106ed3ed77359ac85d9cf08e30290df864"; 44 - sha256 = "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"; 45 - }; 46 - } 47 - { 48 - goPackagePath = "github.com/prometheus/procfs"; 49 - fetch = { 50 - type = "git"; 51 - url = "https://github.com/prometheus/procfs"; 52 - rev = "c91d8eefde16bd047416409eb56353ea84a186e4"; 53 - sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; 54 - }; 55 - } 56 - { 57 - goPackagePath = "github.com/golang/glog"; 58 - fetch = { 59 - type = "git"; 60 - url = "https://github.com/golang/glog"; 61 - rev = "fca8c8854093a154ff1eb580aae10276ad6b1b5f"; 62 - sha256 = "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8"; 63 - }; 64 - } 65 - { 66 - goPackagePath = "bitbucket.org/ww/goautoneg"; 67 - fetch = { 68 - type = "hg"; 69 - url = "bitbucket.org/ww/goautoneg"; 70 - rev = "75cd24fc2f2c2a2088577d12123ddee5f54e0675"; 71 - sha256 = "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"; 72 - }; 73 - } 74 - { 75 - goPackagePath = "github.com/antonlindstrom/mesos_stats"; 76 - fetch = { 77 - type = "git"; 78 - url = "https://github.com/antonlindstrom/mesos_stats"; 79 - rev = "0c6ea494c19bedc67ebb85ce3d187ec21050e920"; 80 - sha256 = "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4"; 81 - }; 82 - } 83 - ]