summary refs log tree commit diff
path: root/pkgs/development/libraries/nanomsg
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-06-17 09:10:03 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-17 18:10:03 +0200
commita96db8f5670b226cb3361549a24e2737db8b392f (patch)
tree3894726136bf647aec45408b8bd3b9a7540e4117 /pkgs/development/libraries/nanomsg
parent7da8f449f379c2148c75df6d0c42bdd8c52ada5e (diff)
downloadnixpkgs-a96db8f5670b226cb3361549a24e2737db8b392f.tar
nixpkgs-a96db8f5670b226cb3361549a24e2737db8b392f.tar.gz
nixpkgs-a96db8f5670b226cb3361549a24e2737db8b392f.tar.bz2
nixpkgs-a96db8f5670b226cb3361549a24e2737db8b392f.tar.lz
nixpkgs-a96db8f5670b226cb3361549a24e2737db8b392f.tar.xz
nixpkgs-a96db8f5670b226cb3361549a24e2737db8b392f.tar.zst
nixpkgs-a96db8f5670b226cb3361549a24e2737db8b392f.zip
nanomsg: 1.1.3 -> 1.1.4 (#41984)
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/cgrs63zfbqf7p2kq1xsm2sl5wligj9gh-nanomsg-1.1.4/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.4 with grep in /nix/store/cgrs63zfbqf7p2kq1xsm2sl5wligj9gh-nanomsg-1.1.4
- directory tree listing: https://gist.github.com/ffcd786ca28d29d8689184633a4175e9
- du listing: https://gist.github.com/3dc4771cae8f61cdb26717382321406a
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 4950624a0b6..07bd4e7e9fb 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.3";
+  version = "1.1.4";
   name = "nanomsg-${version}";
 
   src = fetchFromGitHub {
     owner = "nanomsg";
     repo = "nanomsg";
     rev = version;
-    sha256 = "0mckz63rm0hpnln7mkg79bwiybydzbxyzyb39y2m1bjj8xwxkp2m";
+    sha256 = "11mxbhkxkzqwdmpl79mfiiqby7zawgkalips7zr0bbdfyhq7jyrl";
   };
 
   buildInputs = [ cmake ];