nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-18.03 29 lines 795 B view raw
1{ 2 mkDerivation, lib, fetchurl, 3 extra-cmake-modules, 4 qtbase, qttranslations, kcoreaddons, python2, sqlite, postgresql, mysql 5}: 6 7mkDerivation rec { 8 pname = "kdb"; 9 version = "3.0.2"; 10 name = "${pname}-${version}"; 11 12 src = fetchurl { 13 url = "mirror://kde/stable/${pname}/src/${name}.tar.xz"; 14 sha256 = "1n11xhqk3sf4a5nzvnrnj7bj21yqqqkm2d1xzfx3q82fkyah8s49"; 15 }; 16 17 nativeBuildInputs = [ extra-cmake-modules ]; 18 19 buildInputs = [ qttranslations kcoreaddons python2 sqlite postgresql mysql.connector-c ]; 20 21 propagatedBuildInputs = [ qtbase ]; 22 23 meta = with lib; { 24 description = "A database connectivity and creation framework for various database vendors"; 25 license = licenses.lgpl2; 26 platforms = platforms.linux; 27 maintainers = with maintainers; [ zraexy ]; 28 }; 29}