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: b7ae4d6bf8af
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1eafe5d9e1a0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 24, 2020

  1. conftest: 0.15.0 -> 0.18.0

    r-ryantm authored and Jon committed Mar 24, 2020
    Copy the full SHA
    1eafe5d View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/tools/conftest/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/tools/conftest/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule rec {
pname = "conftest";
version = "0.15.0";
version = "0.18.0";

src = fetchFromGitHub {
owner = "instrumenta";
repo = "conftest";
rev = "v${version}";
sha256 = "0lb644fj80r4igxbslbd5pksirnyf6slz4yn0mznyx8i2bd1g4ic";
sha256 = "189as930fksyqk3z636gyqdym1bqm522mya7msfnhzpnh46k5jvd";
};

modSha256 = "1p7fjg1vcrcxb4f5hd00qxx4fqcl051klcjs6ljn4v46qcpn6dcn";
modSha256 = "0gm08lrlaxc7504mapjdm3c4mwlzybnqxfwkkh6fawzvmd9sqddr";

buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];

@@ -22,7 +22,7 @@ buildGoModule rec {

meta = with stdenv.lib; {
description = "Write tests against structured configuration data";
homepage = https://github.com/instrumenta/conftest;
homepage = "https://github.com/instrumenta/conftest";
license = licenses.asl20;
maintainers = with maintainers; [ yurrriq ];
platforms = platforms.all;