sord: unstable-2021-01-12 -> 0.16.14

This commit is contained in:
Alain Zscheile 2022-09-08 12:27:20 +02:00
parent 0b4912d905
commit b78bf087ed
2 changed files with 25 additions and 14 deletions

View File

@ -1,31 +1,42 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, python3, serd, pcre, wafHook }:
{ lib
, stdenv
, doxygen
, fetchFromGitHub
, meson
, ninja
, pcre
, pkg-config
, python3
, serd
}:
stdenv.mkDerivation rec {
pname = "sord";
version = "unstable-2021-01-12";
version = "0.16.14";
# Commit picked in mitigation of #109729
src = fetchFromGitHub {
owner = "drobilla";
repo = pname;
rev = "d2efdb2d026216449599350b55c2c85c0d3efb89";
sha256 = "hHTwK+K6cj9MGO77a1IXiUZtEbXZ08cLGkYZ5eMOIVA=";
fetchSubmodules = true;
rev = "v${version}";
hash = "sha256-S22Szpg6iXeana5t6EpbOtRstthgrJ4Z2cBrf7a9ZBk=";
};
preConfigure = ''
export PKGCONFIG="$PKG_CONFIG"
'';
nativeBuildInputs = [ pkg-config python3 wafHook ];
nativeBuildInputs = [
doxygen
meson
ninja
pkg-config
python3
];
buildInputs = [ pcre ];
propagatedBuildInputs = [ serd ];
dontAddWafCrossFlags = true;
doCheck = true;
meta = with lib; {
homepage = "http://drobilla.net/software/sord";
description = "A lightweight C library for storing RDF data in memory";
license = licenses.mit;
license = with licenses; [ bsd0 isc ];
maintainers = [ maintainers.goibhniu ];
platforms = platforms.unix;
};

View File

@ -22004,7 +22004,7 @@ with pkgs;
sope = callPackage ../development/libraries/sope { };
sord = callPackage ../development/libraries/sord {};
sord = callPackage ../development/libraries/sord { };
soundtouch = callPackage ../development/libraries/soundtouch {};