summary refs log tree commit diff
path: root/pkgs/development/libraries/serd
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2012-07-05 23:29:45 +0200
committerCillian de Róiste <goibhniu@fsfe.org>2012-07-05 23:29:45 +0200
commita2501c3561193045e7654bbb169d52a23c871282 (patch)
tree3435e2a7d63719891e9e5f05ac91783f80f2f311 /pkgs/development/libraries/serd
parent562259efc1fc3fa06b8f81a48bf612880abf2230 (diff)
downloadnixpkgs-a2501c3561193045e7654bbb169d52a23c871282.tar
nixpkgs-a2501c3561193045e7654bbb169d52a23c871282.tar.gz
nixpkgs-a2501c3561193045e7654bbb169d52a23c871282.tar.bz2
nixpkgs-a2501c3561193045e7654bbb169d52a23c871282.tar.lz
nixpkgs-a2501c3561193045e7654bbb169d52a23c871282.tar.xz
nixpkgs-a2501c3561193045e7654bbb169d52a23c871282.tar.zst
nixpkgs-a2501c3561193045e7654bbb169d52a23c871282.zip
Adding lv2 support
LV2 is a portable plugin standard for audio systems, similar in scope to  LADSPA, VST, AU, and others. The Calf audio plugin pack uses LV2 and Ardour3 has also been updated to support LV2 Plugins
Diffstat (limited to 'pkgs/development/libraries/serd')
-rw-r--r--pkgs/development/libraries/serd/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/libraries/serd/default.nix b/pkgs/development/libraries/serd/default.nix
new file mode 100644
index 00000000000..8deb26abc1d
--- /dev/null
+++ b/pkgs/development/libraries/serd/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl, pcre, pkgconfig, python }:
+
+stdenv.mkDerivation rec {
+  name = "serd-${version}";
+  version = "0.14.0";
+
+  src = fetchurl {
+    url = "http://download.drobilla.net/${name}.tar.bz2";
+    sha256 = "023gsw0nwn2fh2vp7v2gwsmdwk6658zfl1ihdvr9xbayfcv88wlg";
+  };
+
+  buildInputs = [ pcre pkgconfig python ];
+
+  configurePhase = "python waf configure --prefix=$out";
+
+  buildPhase = "python waf";
+
+  installPhase = "python waf install";
+
+  meta = with stdenv.lib; {
+    homepage = http://drobilla.net/software/serd;
+    description = "A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples";
+    license = licenses.mit;
+    maintainers = [ maintainers.goibhniu ];
+
+  };
+}