libbsd: 0.11.3 -> 0.11.5

* libbsd: 0.11.3 -> 0.11.5 (#159492)

* libbsd: clarify licensing

Upstream references:
https://gitlab.freedesktop.org/libbsd/libbsd/-/blob/0.11.5/COPYING

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>

authored by R. RyanTM Renaud and committed by GitHub cfe1e451 f70caf75

+3 -3
+3 -3
pkgs/development/libraries/libbsd/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libbsd"; 5 - version = "0.11.3"; 5 + version = "0.11.5"; 6 6 7 7 src = fetchurl { 8 8 url = "https://libbsd.freedesktop.org/releases/${pname}-${version}.tar.xz"; 9 - sha256 = "18a2bcl9z0zyxhrm1lfv4yhhz0589s6jz0s78apaq78mhj0wz5gz"; 9 + sha256 = "sha256-GpyVJSVjXBu2dwyyLpabk42Oap15EjYrmO6DcFmbDv0="; 10 10 }; 11 11 12 12 outputs = [ "out" "dev" "man" ]; ··· 21 21 meta = with lib; { 22 22 description = "Common functions found on BSD systems"; 23 23 homepage = "https://libbsd.freedesktop.org/"; 24 - license = licenses.bsd3; 24 + license = with licenses; [ beerware bsd2 bsd3 bsdOriginal isc mit ]; 25 25 platforms = platforms.linux ++ platforms.darwin; 26 26 maintainers = with maintainers; [ matthewbauer ]; 27 27 };