mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +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.
37 lines
1.2 KiB
Nix
37 lines
1.2 KiB
Nix
{ mkDerivation, fetchurl, lib
|
|
, extra-cmake-modules, doxygen, graphviz, qtbase, qtwebengine, mpir
|
|
, kdelibs4support, plasma-framework, knewstuff, kpackage
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "alkimia";
|
|
version = "8.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/alkimia/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-z4Ru6HucxjD1jgvdIzNCloELo7zBdR/i9HIhYYl+4zo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules doxygen graphviz ];
|
|
|
|
# qtwebengine is not a mandatory dependency, but it adds some features
|
|
# we might need for alkimia's dependents. See:
|
|
# https://github.com/KDE/alkimia/blob/v8.1.2/CMakeLists.txt#L124
|
|
buildInputs = [ qtbase qtwebengine kdelibs4support plasma-framework knewstuff kpackage ];
|
|
propagatedBuildInputs = [ mpir ];
|
|
|
|
meta = {
|
|
description = "Library used by KDE finance applications";
|
|
mainProgram = "onlinequoteseditor5";
|
|
longDescription = ''
|
|
Alkimia is the infrastructure for common storage and business
|
|
logic that will be used by all financial applications in KDE.
|
|
|
|
The target is to share financial related information over
|
|
application boundaries.
|
|
'';
|
|
license = lib.licenses.lgpl21Plus;
|
|
platforms = qtbase.meta.platforms;
|
|
};
|
|
}
|