Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #199100 from r-ryantm/auto-update/libre

libre: 2.8.0 -> 2.9.0

authored by

7c6f434c and committed by
GitHub
ec77cad9 373cbaa1

+2 -2
+2 -2
pkgs/development/libraries/libre/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, zlib, openssl }: 2 2 stdenv.mkDerivation rec { 3 - version = "2.8.0"; 3 + version = "2.9.0"; 4 4 pname = "libre"; 5 5 src = fetchFromGitHub { 6 6 owner = "baresip"; 7 7 repo = "re"; 8 8 rev = "v${version}"; 9 - sha256 = "sha256-mbPFaq49EI2BdhdQJwFaBxjAh2aKlcuFwoCTwhXRbUg="; 9 + sha256 = "sha256-YNAfHmohMqGGF8N/VdndJJ32PF/GMBoNtjo/t2lt6HA="; 10 10 }; 11 11 buildInputs = [ zlib openssl ]; 12 12 makeFlags = [ "USE_ZLIB=1" "USE_OPENSSL=1" "PREFIX=$(out)" ]