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

sord: 0.16.14 -> 0.16.16

Changes: https://gitlab.com/drobilla/sord/-/compare/v0.16.14...v0.16.16?from_project_id=11853362&straight=false

+6 -5
+6 -5
pkgs/development/libraries/sord/default.nix
··· 4 4 , fetchFromGitHub 5 5 , meson 6 6 , ninja 7 - , pcre 7 + , pcre2 8 8 , pkg-config 9 9 , python3 10 10 , serd 11 + , zix 11 12 }: 12 13 13 14 stdenv.mkDerivation rec { 14 15 pname = "sord"; 15 - version = "0.16.14"; 16 + version = "0.16.16"; 16 17 17 18 src = fetchFromGitHub { 18 19 owner = "drobilla"; 19 20 repo = pname; 20 21 rev = "v${version}"; 21 - hash = "sha256-S22Szpg6iXeana5t6EpbOtRstthgrJ4Z2cBrf7a9ZBk="; 22 + hash = "sha256-GDs1m8KoEhJDdCf7kacQMZzCNPoZhESJds6KupQvOkU="; 22 23 }; 23 24 24 25 outputs = [ "out" "dev" "doc" "man" ]; ··· 30 31 pkg-config 31 32 python3 32 33 ]; 33 - buildInputs = [ pcre ]; 34 - propagatedBuildInputs = [ serd ]; 34 + buildInputs = [ pcre2 ]; 35 + propagatedBuildInputs = [ serd zix ]; 35 36 36 37 doCheck = true; 37 38