about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/futuresql/default.nix
blob: 2adc148701a74a727f2d666510832feb32ca7bb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl, cmake, extra-cmake-modules, qtbase }:
stdenv.mkDerivation rec {
  pname = "futuresql";
  version = "0.1.1";

  src = fetchurl {
    url = "https://download.kde.org/stable/${pname}/${pname}-${version}.tar.xz";
    hash = "sha256-5E7Y1alhizynuimD7ZxfdXLm4KWxmflIaINLccy+vUM=";
  };

  nativeBuildInputs = [ cmake extra-cmake-modules ];
  buildInputs = [ qtbase ];

  # a library, nothing to wrap
  dontWrapQtApps = true;
}