3b04b9f6e3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/kdb/versions
30 lines
795 B
Nix
30 lines
795 B
Nix
{
|
|
mkDerivation, lib, fetchurl,
|
|
extra-cmake-modules,
|
|
qtbase, qttranslations, kcoreaddons, python2, sqlite, postgresql, mysql
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "kdb";
|
|
version = "3.2.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/src/${name}.tar.xz";
|
|
sha256 = "0s909x34a56n3xwhqz27irl2gbzidax0685w2kf34f0liny872cg";
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
|
|
buildInputs = [ qttranslations kcoreaddons python2 sqlite postgresql mysql.connector-c ];
|
|
|
|
propagatedBuildInputs = [ qtbase ];
|
|
|
|
meta = with lib; {
|
|
description = "A database connectivity and creation framework for various database vendors";
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ zraexy ];
|
|
};
|
|
}
|