From 10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Thu, 24 May 2018 14:41:19 -0700 Subject: [PATCH] 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 --- pkgs/development/libraries/nanomsg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/nanomsg/default.nix b/pkgs/development/libraries/nanomsg/default.nix index 99c9c5f1600..4950624a0b6 100644 --- a/pkgs/development/libraries/nanomsg/default.nix +++ b/pkgs/development/libraries/nanomsg/default.nix @@ -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 ];