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
This commit is contained in:
parent
643419f02b
commit
6767e9d5a0
1 changed files with 6 additions and 5 deletions
|
@ -4,21 +4,22 @@
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, meson
|
, meson
|
||||||
, ninja
|
, ninja
|
||||||
, pcre
|
, pcre2
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, python3
|
, python3
|
||||||
, serd
|
, serd
|
||||||
|
, zix
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "sord";
|
pname = "sord";
|
||||||
version = "0.16.14";
|
version = "0.16.16";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "drobilla";
|
owner = "drobilla";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-S22Szpg6iXeana5t6EpbOtRstthgrJ4Z2cBrf7a9ZBk=";
|
hash = "sha256-GDs1m8KoEhJDdCf7kacQMZzCNPoZhESJds6KupQvOkU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "out" "dev" "doc" "man" ];
|
outputs = [ "out" "dev" "doc" "man" ];
|
||||||
|
@ -30,8 +31,8 @@ stdenv.mkDerivation rec {
|
||||||
pkg-config
|
pkg-config
|
||||||
python3
|
python3
|
||||||
];
|
];
|
||||||
buildInputs = [ pcre ];
|
buildInputs = [ pcre2 ];
|
||||||
propagatedBuildInputs = [ serd ];
|
propagatedBuildInputs = [ serd zix ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue