mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
Merge #194796: sord: unstable-2021-01-12 -> 0.16.14
This commit is contained in:
commit
d7ee6391f8
@ -1,6 +1,6 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, qttools, wrapQtAppsHook
|
||||
, alsa-lib, dssi, fluidsynth, ladspaH, lash, libinstpatch, libjack2, liblo
|
||||
, libsamplerate, libsndfile, lilv, lrdf, lv2, qtsvg, rtaudio, rubberband, sord
|
||||
, libsamplerate, libsndfile, lilv, lrdf, lv2, qtsvg, rtaudio, rubberband, sord, serd
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -25,6 +25,8 @@ stdenv.mkDerivation rec {
|
||||
libsamplerate libsndfile lilv lrdf lv2 qtsvg rtaudio rubberband sord
|
||||
];
|
||||
|
||||
NIX_CFLAGS_COMPILE = [ "-I${lib.getDev serd}/include/serd-0" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://muse-sequencer.github.io/";
|
||||
description = "MIDI/Audio sequencer with recording and editing capabilities";
|
||||
|
@ -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;
|
||||
};
|
||||
|
@ -22096,7 +22096,7 @@ with pkgs;
|
||||
|
||||
sope = callPackage ../development/libraries/sope { };
|
||||
|
||||
sord = callPackage ../development/libraries/sord {};
|
||||
sord = callPackage ../development/libraries/sord { };
|
||||
|
||||
soundtouch = callPackage ../development/libraries/soundtouch {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user