about summary refs log tree commit diff
path: root/pkgs/kde/misc/kunifiedpush/default.nix
blob: 9e7cb57ba3ad5c6d858a68515e9b20abed5ba181 (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
{
  lib,
  mkKdeDerivation,
  fetchFromGitLab,
  qtwebsockets,
  kdeclarative,
  kpackage,
}:
mkKdeDerivation {
  pname = "kunifiedpush";
  version = "unstable-2024-02-19";

  src = fetchFromGitLab {
    domain = "invent.kde.org";
    owner = "libraries";
    repo = "kunifiedpush";
    rev = "b89a31fb4f333a4e5d6c475a030147c8bdcffec6";
    hash = "sha256-bhlsEP7cLuA6Rj6nrpp5iC3uolc02twNMLsWl+d/BXo=";
  };

  extraBuildInputs = [qtwebsockets kdeclarative kpackage];

  meta.license = with lib.licenses; [bsd2 bsd3 cc0 lgpl2Plus];
  meta.mainProgram = "kunifiedpush-distributor";
}