375ba615d4
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/a5vvjndyd5qccy1fphllczql9hdfnfah-kdb-3.1.0/bin/kdb3_sqlite3_dump -h` got 0 exit code - ran `/nix/store/a5vvjndyd5qccy1fphllczql9hdfnfah-kdb-3.1.0/bin/kdb3_sqlite3_dump --help` got 0 exit code - ran `/nix/store/a5vvjndyd5qccy1fphllczql9hdfnfah-kdb-3.1.0/bin/kdb3_sqlite3_dump -h` and found version 3.1.0 - ran `/nix/store/a5vvjndyd5qccy1fphllczql9hdfnfah-kdb-3.1.0/bin/kdb3_sqlite3_dump --help` and found version 3.1.0 - found 3.1.0 with grep in /nix/store/a5vvjndyd5qccy1fphllczql9hdfnfah-kdb-3.1.0 - directory tree listing: https://gist.github.com/05674b3e604ee41cd435090c4b6c8101
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.1.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/src/${name}.tar.xz";
|
|
sha256 = "1wi9z7j0nr9wi6aqqkdcpnr38ixyxbv00sblya7pakdf96hlamhp";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|