2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, lv2, pkg-config, python3, serd, sord, wafHook }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "sratom";
|
2021-04-05 15:23:46 +00:00
|
|
|
version = "0.6.8";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2021-04-05 15:23:46 +00:00
|
|
|
sha256 = "sha256-Ossysa3Forf6za3i4IGLzWxx8j+EoevBeBW7eg0tAt8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config wafHook python3 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ lv2 serd sord ];
|
2022-04-27 09:35:20 +00:00
|
|
|
dontAddWafCrossFlags = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "http://drobilla.net/software/sratom";
|
|
|
|
description = "A library for serialising LV2 atoms to/from RDF";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2021-10-04 12:37:57 +00:00
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|