mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
26 lines
583 B
Nix
26 lines
583 B
Nix
{
|
|
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";
|
|
}
|