about summary refs log tree commit diff
path: root/pkgs/development/libraries/sord/sord-svn.nix
blob: 290e85d81c7e2a29c00e39ccdbf138e725dbd50e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchsvn, pkgconfig, python, serd }:

stdenv.mkDerivation rec {
  name = "sord-svn-${rev}";
  rev = "327";

  src = fetchsvn {
    url = "http://svn.drobilla.net/sord/trunk";
    rev = rev;
    sha256 = "09lf6xmwfg8kbmz1b7d3hrpz0qqr8prdjqrp91aw70cgclx2pwc4";
  };

  buildInputs = [ pkgconfig python serd ];

  configurePhase = "python waf configure --prefix=$out";

  buildPhase = "python waf";

  installPhase = "python waf install";

  meta = with stdenv.lib; {
    homepage = http://drobilla.net/software/sord;
    description = "A lightweight C library for storing RDF data in memory";
    license = licenses.mit;
    maintainers = [ maintainers.goibhniu ];
    platforms = platforms.linux;
  };
}