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
base: ec2df9895f53
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 65fa918adbdd
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 8, 2019

  1. Expose prometheus generic builder.

     So that people can easily try newer prometheus version
     in overlays:
    
     self: super: {
       prometheus_2 = (super.callPackage <nixpkgs/pkgs/servers/monitoring/prometheus> {}).generic {
         version = "2.8.1";
         sha256 = "0x8w0qdh4lcf19nmdlhvgzpy08c2a932d3k49cjwhi5npcsf858n";
         doCheck = false;
       };
     }
    jbgi committed Apr 8, 2019
    Copy the full SHA
    670359e View commit details
    Browse the repository at this point in the history
  2. prometheus: rename the generic function to buildPrometheus

    Since the `generic` function is now exported it should have a less
    generic name, pun intended.
    basvandijk committed Apr 8, 2019
    Copy the full SHA
    b6fdd1a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #59175 from jbgi/generic-prometheus

    Expose prometheus generic builder.
    basvandijk committed Apr 8, 2019
    Copy the full SHA
    65fa918 View commit details
    Browse the repository at this point in the history