504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
16 lines
431 B
Nix
16 lines
431 B
Nix
{ stdenv, fetchurl, cmake, extra-cmake-modules, 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 extra-cmake-modules ];
|
|
buildInputs = [ qtbase ];
|
|
|
|
# a library, nothing to wrap
|
|
dontWrapQtApps = true;
|
|
}
|