summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-03-20 10:23:24 +0100
committerGitHub <noreply@github.com>2022-03-20 10:23:24 +0100
commitb70db0a774b81e8ee2ea07b5cb29d08d0da33bd8 (patch)
treeda5a2195a92f7e2fd5a75e08d5792b026fa630ad /pkgs/development
parentd20578ef3bf35c15356e7abb2a8fc14e4ce304ee (diff)
parent13f95830f43e683b8472b8387d32061f97bc4098 (diff)
downloadnixpkgs-b70db0a774b81e8ee2ea07b5cb29d08d0da33bd8.tar
nixpkgs-b70db0a774b81e8ee2ea07b5cb29d08d0da33bd8.tar.gz
nixpkgs-b70db0a774b81e8ee2ea07b5cb29d08d0da33bd8.tar.bz2
nixpkgs-b70db0a774b81e8ee2ea07b5cb29d08d0da33bd8.tar.lz
nixpkgs-b70db0a774b81e8ee2ea07b5cb29d08d0da33bd8.tar.xz
nixpkgs-b70db0a774b81e8ee2ea07b5cb29d08d0da33bd8.tar.zst
nixpkgs-b70db0a774b81e8ee2ea07b5cb29d08d0da33bd8.zip
Merge pull request #164799 from r-ryantm/auto-update/mysocketw
mysocketw: 3.10.27 -> 3.11.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/mysocketw/default.nix27
1 files changed, 19 insertions, 8 deletions
diff --git a/pkgs/development/libraries/mysocketw/default.nix b/pkgs/development/libraries/mysocketw/default.nix
index 62bd7cea1a1..32987d64992 100644
--- a/pkgs/development/libraries/mysocketw/default.nix
+++ b/pkgs/development/libraries/mysocketw/default.nix
@@ -1,27 +1,38 @@
-{ lib, stdenv, fetchFromGitHub, openssl, cmake }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, openssl
+, cmake
+}:
 
 stdenv.mkDerivation rec {
   pname = "mysocketw";
-  version = "3.10.27";
+  version = "3.11.0";
 
   src = fetchFromGitHub {
     owner = "RigsOfRods";
     repo = "socketw";
     rev = version;
-    sha256 = "0xqcgwb1lyc2d8834sq5adbmggyn6vvb26jw20862sxa15j0qfd4";
+    hash = "sha256-mpfhmKE2l59BllkOjmURIfl17lAakXpmGh2x9SFSaAo=";
   };
 
-  nativeBuildInputs = [ cmake ];
-  buildInputs = [ openssl ];
+  nativeBuildInputs = [
+    cmake
+  ];
+
+  buildInputs = [
+    openssl
+  ];
 
   postPatch = lib.optionalString stdenv.isDarwin ''
     substituteInPlace src/Makefile \
         --replace -Wl,-soname, -Wl,-install_name,$out/lib/
   '';
 
-  meta = {
+  meta = with lib; {
     description = "Cross platform (Linux/FreeBSD/Unix/Win32) streaming socket C++";
-    license = lib.licenses.lgpl21Plus;
-    platforms = lib.platforms.all;
+    homepage = "https://github.com/RigsOfRods/socketw";
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ ];
   };
 }