blob: 707a77006acbe4c9d2871cea5f4fefc6191bc175 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{ lib
, stdenv
, fetchurl
, doxygen
, mandoc
, meson
, ninja
, pkg-config
, python3
, sphinx
, writeScript
}:
stdenv.mkDerivation rec {
pname = "serd";
version = "0.30.16";
outputs = [ "out" "dev" "doc" "man" ];
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.xz";
hash = "sha256-9Q9IbaUZzdjQOyDJ5CQU5FkTP1okRBHY5jyu+NmskUY=";
};
nativeBuildInputs = [
doxygen
mandoc
meson
ninja
pkg-config
python3
sphinx
];
postPatch = ''
patchShebangs .
'';
passthru = {
updateScript = writeScript "update-poke" ''
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl pcre common-updater-scripts
set -eu -o pipefail
# Expect the text in format of 'download.drobilla.net/serd-0.30.16.tar.xz">'
new_version="$(curl -s https://drobilla.net/category/serd/ |
pcregrep -o1 'download.drobilla.net/serd-([0-9.]+).tar.xz' |
head -n1)"
update-source-version ${pname} "$new_version"
'';
};
meta = with lib; {
description = "Lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples";
homepage = "https://drobilla.net/software/serd";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
mainProgram = "serdi";
platforms = platforms.unix;
};
}
|