minicom: 2.7.1 -> 2.8

Among other things fixes build failure on -fno-common toolchains.

authored by Sergei Trofimovich and committed by Peter Hoeg 1152adbc c9924f2b

+9 -8
+9 -8
pkgs/tools/misc/minicom/default.nix
··· 1 - { lib, stdenv, fetchgit, autoreconfHook, makeWrapper, pkg-config 2 , lrzsz, ncurses, libiconv }: 3 4 - stdenv.mkDerivation { 5 pname = "minicom"; 6 - version = "2.7.1"; 7 8 - # The repository isn't tagged properly, so we need to use commit refs 9 - src = fetchgit { 10 - url = "https://salsa.debian.org/minicom-team/minicom.git"; 11 - rev = "6ea8033b6864aa35d14fb8b87e104e4f783635ce"; 12 - sha256 = "0j95727xni4r122dalp09963gvc1nqa18l1d4wzz8746kw5s2rrb"; 13 }; 14 15 buildInputs = [ ncurses ] ++ lib.optional stdenv.isDarwin libiconv;
··· 1 + { lib, stdenv, fetchFromGitLab, autoreconfHook, makeWrapper, pkg-config 2 , lrzsz, ncurses, libiconv }: 3 4 + stdenv.mkDerivation rec { 5 pname = "minicom"; 6 + version = "2.8"; 7 8 + src = fetchFromGitLab { 9 + domain = "salsa.debian.org"; 10 + owner = "minicom-team"; 11 + repo = pname; 12 + rev = version; 13 + sha256 = "165zhi88swvkhl3v17223r0f27hb3y0qzrgl51jkk0my2m4xscgg"; 14 }; 15 16 buildInputs = [ ncurses ] ++ lib.optional stdenv.isDarwin libiconv;