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

Commits on Mar 20, 2018

  1. libyamlcpp: 0.6.1 -> 0.6.2

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
    - found 0.6.2 with grep in /nix/store/cfm3y6c18a0ys0ndbv4g4zixay7zh331-libyaml-cpp-0.6.2
    - found 0.6.2 in filename of file in /nix/store/cfm3y6c18a0ys0ndbv4g4zixay7zh331-libyaml-cpp-0.6.2
    - directory tree listing: https://gist.github.com/54fa524e8988d3fbe9920824135802a0
    ryantm committed Mar 20, 2018
    Copy the full SHA
    cc6dc2c View commit details

Commits on Mar 21, 2018

  1. Merge pull request #37490 from ryantm/auto-update/libyaml-cpp

    libyamlcpp: 0.6.1 -> 0.6.2
    andir authored Mar 21, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d2eddd1 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/libyaml-cpp/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libyaml-cpp/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
name = "libyaml-cpp-${version}";
version = "0.6.1";
version = "0.6.2";

src = fetchFromGitHub {
owner = "jbeder";
repo = "yaml-cpp";
rev = "yaml-cpp-${version}";
sha256 = "16x53p9gfch7gpyg865j7m1zhqsixx2hbbd206ffjv0ip8cjipjf";
sha256 = "16lclpa487yghf9019wymj419wkyx4795wv9q7539hhimajw9kpb";
};

outputs = [ "out" "dev" ];