summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/virtualization/libgovirt/default.nix
blob: 0815781c21f7daa13f8a09f61090d7dbcd6f1492 (plain)
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
{ lib
, stdenv
, fetchurl
, glib
, gnome
, librest
, libsoup
, pkg-config
, gobject-introspection
}:

stdenv.mkDerivation rec {
  pname = "libgovirt";
  version = "0.3.8";

  outputs = [ "out" "dev" ];

  src = fetchurl {
    url = "mirror://gnome/sources/libgovirt/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
    sha256 = "HckYYikXa9+p8l/Y+oLAoFi2pgwcyAfHUH7IqTwPHfg=";
  };

  patches = lib.optionals stdenv.isDarwin [
    # The flag breaks the build on darwin and doesn't seem necessary
    ./no-version-script-ld-flag.patch
  ];

  nativeBuildInputs = [
    pkg-config
    gobject-introspection
  ];

  buildInputs = [
    libsoup
  ];

  propagatedBuildInputs = [
    glib
    librest
  ];

  enableParallelBuilding = true;

  passthru = {
    updateScript = gnome.updateScript {
      packageName = pname;
      versionPolicy = "none";
    };
  };

  meta = with lib; {
    homepage = "https://gitlab.gnome.org/GNOME/libgovirt";
    description = "GObject wrapper for the oVirt REST API";
    maintainers = with maintainers; [ amarshall atemu ];
    platforms = with platforms; linux ++ darwin;
    license = licenses.lgpl21Plus;
  };
}