blob: d73ffdf99bb5a971a9634d9566f780a83d36a0cc (
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
|
{
stdenv,
lib,
fetchFromGitLab,
meson,
ninja,
pkg-config,
llvmPackages,
gobject-introspection,
glib,
unstableGitUpdater,
}:
stdenv.mkDerivation {
pname = "tartan";
version = "0.3.0-unstable-2023-10-11";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "tartan";
repo = "tartan";
rev = "4a7c945535d746d3d874ebebc0217715d674a862";
hash = "sha256-DYvbBGgytf1JOYKejZB+ReehD8iKm1n4BhMmLQURay0=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
gobject-introspection
glib
llvmPackages.libclang
llvmPackages.libllvm
];
passthru = {
updateScript = unstableGitUpdater {
# The updater tries src.url by default, which does not exist for fetchFromGitLab (fetchurl).
url = "https://gitlab.freedesktop.org/tartan/tartan.git";
};
};
meta = with lib; {
broken = stdenv.isDarwin;
description = "Tools and Clang plugins for developing code with GLib";
homepage = "https://gitlab.freedesktop.org/tartan/tartan";
changelog = "https://gitlab.freedesktop.org/tartan/tartan/-/blob/main/NEWS";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ jtojnar ];
};
}
|