Merge pull request #302185 from marsam/update-uclibc-ng

uclibc-ng: 1.0.45 -> 1.0.47

authored by Mario Rodas and committed by GitHub 81a5d0fc 0d661da3

+8 -2
+8 -2
pkgs/by-name/uc/uclibc-ng/package.nix
··· 2 , stdenv 3 , buildPackages 4 , fetchurl 5 , linuxHeaders 6 , libiconvReal 7 , extraConfig ? "" ··· 58 in 59 stdenv.mkDerivation (finalAttrs: { 60 pname = "uclibc-ng"; 61 - version = "1.0.45"; 62 63 src = fetchurl { 64 url = "https://downloads.uclibc-ng.org/releases/${finalAttrs.version}/uClibc-ng-${finalAttrs.version}.tar.xz"; 65 - sha256 = "sha256-wvTGtuGdfJwiaZKjdG79erkyBARjwV7gvI9BMrV3esQ="; 66 }; 67 68 # 'ftw' needed to build acl, a coreutils dependency ··· 112 # Derivations may check for the existance of this attribute, to know what to 113 # link to. 114 libiconv = libiconvReal; 115 }; 116 117 meta = {
··· 2 , stdenv 3 , buildPackages 4 , fetchurl 5 + , gitUpdater 6 , linuxHeaders 7 , libiconvReal 8 , extraConfig ? "" ··· 59 in 60 stdenv.mkDerivation (finalAttrs: { 61 pname = "uclibc-ng"; 62 + version = "1.0.47"; 63 64 src = fetchurl { 65 url = "https://downloads.uclibc-ng.org/releases/${finalAttrs.version}/uClibc-ng-${finalAttrs.version}.tar.xz"; 66 + hash = "sha256-KaTWhKBto0TuPuCazCynZJ1ZKuP/hI9pgUXEbe8F78s="; 67 }; 68 69 # 'ftw' needed to build acl, a coreutils dependency ··· 113 # Derivations may check for the existance of this attribute, to know what to 114 # link to. 115 libiconv = libiconvReal; 116 + 117 + updateScript = gitUpdater { 118 + url = "https://git.uclibc-ng.org/git/uclibc-ng.git"; 119 + rev-prefix = "v"; 120 + }; 121 }; 122 123 meta = {