summary refs log tree commit diff
path: root/pkgs/development/libraries/libbsd
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-02-18 09:56:43 -0800
committerGitHub <noreply@github.com>2022-02-18 18:56:43 +0100
commitcfe1e45137a3150f6de8d8d8908133227f94718b (patch)
tree611ecfa1f12825967c19beccb3a8212257ffcd03 /pkgs/development/libraries/libbsd
parentf70caf75e4f207930583406595a91538853b4a0b (diff)
downloadnixpkgs-cfe1e45137a3150f6de8d8d8908133227f94718b.tar
nixpkgs-cfe1e45137a3150f6de8d8d8908133227f94718b.tar.gz
nixpkgs-cfe1e45137a3150f6de8d8d8908133227f94718b.tar.bz2
nixpkgs-cfe1e45137a3150f6de8d8d8908133227f94718b.tar.lz
nixpkgs-cfe1e45137a3150f6de8d8d8908133227f94718b.tar.xz
nixpkgs-cfe1e45137a3150f6de8d8d8908133227f94718b.tar.zst
nixpkgs-cfe1e45137a3150f6de8d8d8908133227f94718b.zip
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>
Diffstat (limited to 'pkgs/development/libraries/libbsd')
-rw-r--r--pkgs/development/libraries/libbsd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libbsd/default.nix b/pkgs/development/libraries/libbsd/default.nix
index 745b34226e2..8c8e47b98a4 100644
--- a/pkgs/development/libraries/libbsd/default.nix
+++ b/pkgs/development/libraries/libbsd/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "libbsd";
-  version = "0.11.3";
+  version = "0.11.5";
 
   src = fetchurl {
     url = "https://libbsd.freedesktop.org/releases/${pname}-${version}.tar.xz";
-    sha256 = "18a2bcl9z0zyxhrm1lfv4yhhz0589s6jz0s78apaq78mhj0wz5gz";
+    sha256 = "sha256-GpyVJSVjXBu2dwyyLpabk42Oap15EjYrmO6DcFmbDv0=";
   };
 
   outputs = [ "out" "dev" "man" ];
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Common functions found on BSD systems";
     homepage = "https://libbsd.freedesktop.org/";
-    license = licenses.bsd3;
+    license = with licenses; [ beerware bsd2 bsd3 bsdOriginal isc mit ];
     platforms = platforms.linux ++ platforms.darwin;
     maintainers = with maintainers; [ matthewbauer ];
   };