about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libvarlink/default.nix
blob: 099fae07dac15479ea6fe39b291e1c5ab0980db0 (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
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, python3
}:

stdenv.mkDerivation rec {
  pname = "libvarlink";
  version = "22";

  src = fetchFromGitHub {
    owner = "varlink";
    repo = pname;
    rev = version;
    sha256 = "1i15227vlc9k4276r833ndhxrcys9305pf6dga1j0alx2vj85yz2";
  };

  nativeBuildInputs = [ meson ninja ];

  postPatch = ''
    substituteInPlace varlink-wrapper.py \
      --replace "/usr/bin/env python3" "${python3}/bin/python3"

    # test-object: ../lib/test-object.c:129: main: Assertion `setlocale(LC_NUMERIC, "de_DE.UTF-8") != 0' failed.
    # PR that added it https://github.com/varlink/libvarlink/pull/27
    substituteInPlace lib/test-object.c \
      --replace 'assert(setlocale(LC_NUMERIC, "de_DE.UTF-8") != 0);' ""

    patchShebangs lib/test-symbols.sh
  '';

  doCheck = true;

  meta = with lib; {
    description = "C implementation of the Varlink protocol and command line tool";
    homepage = "https://github.com/varlink/libvarlink";
    license = licenses.asl20;
    maintainers = with maintainers; [ artturin ];
    platforms = platforms.linux;
  };
}