Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 743be07f18ec
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8867b242b6ba
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Aug 27, 2019

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    eee23c1 View commit details
  2. Merge pull request #67567 from mmahut/gitlab-ci-pipelines-exporter

    prometheus-gitlab-ci-pipelines-exporter: init at 0.2.5
    WilliButz authored Aug 27, 2019
    Copy the full SHA
    8867b24 View commit details
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
pname = "gitlab-ci-pipelines-exporter";
version = "0.2.5";

goPackagePath = "github.com/mvisonneau/gitlab-ci-pipelines-exporter";

goDeps = ./gitlab-ci-pipelines-exporter_deps.nix;

src = fetchFromGitHub {
owner = "mvisonneau";
repo = pname;
rev = version;
sha256 = "0qmy6pqfhx9bphgh1zqi68kp0nscwy1x7z13lfiaaz8pgsjh95yy";
};

doCheck = true;

meta = with stdenv.lib; {
description = "Prometheus / OpenMetrics exporter for GitLab CI pipelines insights";
homepage = "https://github.com/mvisonneau/gitlab-ci-pipelines-exporter";
license = licenses.asl20;
maintainers = [ maintainers.mmahut ];
platforms = platforms.all;
};
}
Loading