4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ lib, stdenv, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
let
|
|
inherit (stdenv) lib;
|
|
baseVersion = "0.3.1";
|
|
commit = "9ba85274dcc21bf8132cbe3b3dccfcb4aab57d9f";
|
|
in
|
|
buildGoModule rec {
|
|
pname = "smokeping_prober";
|
|
version = "${baseVersion}-g${commit}";
|
|
|
|
buildFlagsArray = let
|
|
setVars = {
|
|
Version = baseVersion;
|
|
Revision = commit;
|
|
Branch = commit;
|
|
BuildUser = "nix";
|
|
};
|
|
varFlags = lib.concatStringsSep " " (lib.mapAttrsToList (name: value: "-X github.com/prometheus/common/version.${name}=${value}") setVars);
|
|
in [
|
|
"-ldflags=${varFlags} -s -w"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
rev = commit;
|
|
owner = "SuperQ";
|
|
repo = "smokeping_prober";
|
|
sha256 = "sha256:19596di2gzcvlcwiypsncq4zwbyb6d1r6wxsfi59wax3423i7ndg";
|
|
};
|
|
vendorSha256 = "sha256:1b2v3v3kn0m7dvjxbs8q0gw6zingksdqhm5g1frx0mymqk0lg889";
|
|
|
|
doCheck = true;
|
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) smokeping; };
|
|
|
|
meta = with lib; {
|
|
description = "Prometheus exporter for sending continual ICMP/UDP pings";
|
|
homepage = "https://github.com/SuperQ/smokeping_prober";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ lukegb ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|