2022-12-17 10:02:37 +00:00
|
|
|
{ stdenv, lib, cmake, qt4, smokegen, fetchzip }:
|
2022-11-21 17:40:18 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-11-21 17:40:18 +00:00
|
|
|
pname = "smokeqt";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "4.14.3";
|
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://invent.kde.org/unmaintained/${pname}/-/archive/v${version}/${pname}-v${version}.tar.gz";
|
2022-11-21 17:40:18 +00:00
|
|
|
hash = "sha256-8FiEGF8gduVw5I/bi2wExGUWmjIjYEhWpjpXKJGBNMg=";
|
|
|
|
};
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ cmake smokegen ];
|
|
|
|
buildInputs = [ qt4 ];
|
|
|
|
|
2022-11-21 17:40:18 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_CXX_STANDARD=98"
|
|
|
|
];
|
2022-12-17 10:02:37 +00:00
|
|
|
|
2022-11-21 17:40:18 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Bindings for the Qt libraries";
|
|
|
|
homepage = "https://invent.kde.org/unmaintained/smokeqt";
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ uthar ];
|
|
|
|
};
|
|
|
|
}
|