2018-11-11 21:20:41 +00:00
|
|
|
{ stdenv, fetchurl, lv2, pkgconfig, python, serd, sord, wafHook }:
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sratom-${version}";
|
2018-08-21 23:35:17 +01:00
|
|
|
version = "0.6.2";
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://download.drobilla.net/${name}.tar.bz2";
|
2018-08-21 23:35:17 +01:00
|
|
|
sha256 = "0lz883ravxjf7r9wwbx2gx9m8vhyiavxrl9jdxfppjxnsralll8a";
|
2012-07-05 22:29:45 +01:00
|
|
|
};
|
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ lv2 python serd sord ];
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://drobilla.net/software/sratom;
|
|
|
|
description = "A library for serialising LV2 atoms to/from RDF";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 11:08:26 +00:00
|
|
|
platforms = platforms.linux;
|
2012-07-05 22:29:45 +01:00
|
|
|
};
|
|
|
|
}
|