Merge pull request #108808 from Emantor/bump/gensio_sern2et

authored by Sandro and committed by GitHub 0a680e38 805821e1

+45 -8
+25 -4
pkgs/development/libraries/gensio/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, autoreconfHook }: 2 3 stdenv.mkDerivation rec { 4 pname = "gensio"; 5 - version = "2.1.7"; 6 7 src = fetchFromGitHub { 8 owner = "cminyard"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "07m8rbdk05biarc9xskwcx9lghj0dff1msxasfc6hi3jywc3xaih"; 12 }; 13 14 configureFlags = [ 15 "--with-python=no" 16 ]; 17 18 - buildInputs = [ autoreconfHook ]; 19 20 meta = with lib; { 21 description = "General Stream I/O";
··· 1 + { autoreconfHook 2 + , fetchFromGitHub 3 + , fetchpatch 4 + , lib 5 + , nix-update-script 6 + , pkg-config 7 + , stdenv 8 + }: 9 10 stdenv.mkDerivation rec { 11 pname = "gensio"; 12 + version = "2.2.1"; 13 14 src = fetchFromGitHub { 15 owner = "cminyard"; 16 repo = pname; 17 rev = "v${version}"; 18 + sha256 = "083khzvyvcgi9j99hbaswglivm9s6dly6spjvisvyacavaybgwgb"; 19 + }; 20 + 21 + patches = [ 22 + # Fix compilation without openipmi, can be dropped for the next release. 23 + (fetchpatch { 24 + url = "https://github.com/cminyard/gensio/commit/12f6203e6f7aa42172177d7b0870777b605af8d9.patch"; 25 + sha256 = "19dr4iacccc4il3asdxkag6cj2yc4bxd8p451syfxdm6289rwxic"; 26 + }) 27 + ]; 28 + 29 + passthru = { 30 + updateScript = nix-update-script { 31 + attrPath = pname; 32 + }; 33 }; 34 35 configureFlags = [ 36 "--with-python=no" 37 ]; 38 39 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 40 41 meta = with lib; { 42 description = "General Stream I/O";
+20 -4
pkgs/servers/ser2net/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, gensio, libyaml, autoreconfHook, pkgconfig }: 2 3 stdenv.mkDerivation rec { 4 pname = "ser2net"; 5 - version = "4.2.1"; 6 7 src = fetchFromGitHub { 8 owner = "cminyard"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "01w82nrgffsfz2c80p4cyppg3bz56d90jm6i6356j0nva3784haw"; 12 }; 13 14 - buildInputs = [ pkgconfig autoreconfHook gensio libyaml ]; 15 16 meta = with lib; { 17 description = "Serial to network connection server";
··· 1 + { autoreconfHook 2 + , fetchFromGitHub 3 + , gensio 4 + , lib 5 + , libyaml 6 + , nix-update-script 7 + , pkg-config 8 + , stdenv 9 + }: 10 11 stdenv.mkDerivation rec { 12 pname = "ser2net"; 13 + version = "4.3.0"; 14 15 src = fetchFromGitHub { 16 owner = "cminyard"; 17 repo = pname; 18 rev = "v${version}"; 19 + sha256 = "13zhds3zav03f1snc4bb1j07i2x606bmnqm17yx37frib2hjs4nx"; 20 }; 21 22 + passthru = { 23 + updateScript = nix-update-script { 24 + attrPath = pname; 25 + }; 26 + }; 27 + 28 + nativeBuildInputs = [ pkg-config autoreconfHook ]; 29 + 30 + buildInputs = [ gensio libyaml ]; 31 32 meta = with lib; { 33 description = "Serial to network connection server";