mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
27 lines
499 B
Nix
27 lines
499 B
Nix
{
|
|
stdenv,
|
|
fetchurl,
|
|
cmake,
|
|
kdePackages,
|
|
qtbase,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "futuresql";
|
|
version = "0.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/futuresql/futuresql-${version}.tar.xz";
|
|
hash = "sha256-5E7Y1alhizynuimD7ZxfdXLm4KWxmflIaINLccy+vUM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
kdePackages.extra-cmake-modules
|
|
];
|
|
buildInputs = [ qtbase ];
|
|
cmakeFlags = [ "-DQT_MAJOR_VERSION=6" ];
|
|
|
|
# a library, nothing to wrap
|
|
dontWrapQtApps = true;
|
|
}
|