summary refs log tree commit diff
path: root/pkgs/desktops/deepin/dbus-factory/default.nix
blob: 2511f05c4ea3ad030e62fb69e049939bba8afabd (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
{ stdenv, fetchFromGitHub, jq, libxml2, go-dbus-generator, deepin }:

stdenv.mkDerivation rec {
  pname = "dbus-factory";
  version = "3.1.17";

  src = fetchFromGitHub {
    owner = "linuxdeepin";
    repo = pname;
    rev = version;
    sha256 = "1llq8wzgikgpzj7z36fyzk8kjych2h9nzi3x6zv53z0xc1xn4256";
  };

  nativeBuildInputs = [
    jq
    libxml2
    go-dbus-generator
  ];

  makeFlags = [ "GOPATH=${placeholder "out"}/share/go" ];

  postPatch = ''
    sed -i -e 's:/share/gocode:/share/go:' Makefile
  '';

  passthru.updateScript = deepin.updateScript { inherit ;name = "${pname}-${version}"; };

  meta = with stdenv.lib; {
    description = "Generates static DBus bindings for Golang and QML at build-time";
    homepage = https://github.com/linuxdeepin/dbus-factory;
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ romildo ];
  };
}