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

Commits on May 24, 2018

  1. nanomsg: 1.1.2 -> 1.1.3

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/nanomsg/versions.
    
    These checks were done:
    
    - built on NixOS
    - /nix/store/ixs53g4hgmjsapmv98rhp13dxnia80v7-nanomsg-1.1.3/bin/nanocat passed the binary check.
    - 1 of 1 passed binary check by having a zero exit code.
    - 0 of 1 passed binary check by having the new version present in output.
    - found 1.1.3 with grep in /nix/store/ixs53g4hgmjsapmv98rhp13dxnia80v7-nanomsg-1.1.3
    - directory tree listing: https://gist.github.com/cdb8b58cd0b2200dc629e5ed3c05af8b
    - du listing: https://gist.github.com/76b99cc11ac487811d0eeff14406bfce
    R. RyanTM committed May 24, 2018
    Copy the full SHA
    10c973e View commit details

Commits on May 26, 2018

  1. Merge pull request #41056 from r-ryantm/auto-update/nanomsg

    nanomsg: 1.1.2 -> 1.1.3
    adisbladis authored May 26, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c6677c4 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/nanomsg/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/nanomsg/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, cmake, fetchFromGitHub }:

stdenv.mkDerivation rec {
version = "1.1.2";
version = "1.1.3";
name = "nanomsg-${version}";

src = fetchFromGitHub {
owner = "nanomsg";
repo = "nanomsg";
rev = version;
sha256 = "1zvs91afsg61azfv5fldv84gnhf76w3yndkdvpvaprlacxbxdvf5";
sha256 = "0mckz63rm0hpnln7mkg79bwiybydzbxyzyb39y2m1bjj8xwxkp2m";
};

buildInputs = [ cmake ];