summary refs log tree commit diff
path: root/pkgs/development/libraries/nanomsg
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-05-24 14:41:19 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-05-24 14:41:19 -0700
commit10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0 (patch)
treec3da93965be7b0f3bfe14ed7a0f6734f0fffd7c6 /pkgs/development/libraries/nanomsg
parent78319bd948efc53b94bf942b155a8bc4060d5a08 (diff)
downloadnixpkgs-10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0.tar
nixpkgs-10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0.tar.gz
nixpkgs-10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0.tar.bz2
nixpkgs-10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0.tar.lz
nixpkgs-10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0.tar.xz
nixpkgs-10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0.tar.zst
nixpkgs-10c973ef80b182d2ebc1e64cc6bf55ec9c8020f0.zip
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
Diffstat (limited to 'pkgs/development/libraries/nanomsg')
-rw-r--r--pkgs/development/libraries/nanomsg/default.nix4
1 files 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 ];