3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/smokeqt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
714 B
Nix
Raw Normal View History

{ stdenv, lib, cmake, qt4, smokegen, fetchzip }:
2022-10-09 18:36:54 +01:00
stdenv.mkDerivation rec {
2022-10-09 18:36:54 +01:00
pname = "smokeqt";
version = "4.14.3";
src = fetchzip {
url = "https://invent.kde.org/unmaintained/${pname}/-/archive/v${version}/${pname}-v${version}.tar.gz";
2022-10-09 18:36:54 +01:00
hash = "sha256-8FiEGF8gduVw5I/bi2wExGUWmjIjYEhWpjpXKJGBNMg=";
};
strictDeps = true;
nativeBuildInputs = [ cmake smokegen ];
buildInputs = [ qt4 ];
2022-10-09 18:36:54 +01:00
cmakeFlags = [
"-DCMAKE_CXX_STANDARD=98"
];
2022-10-09 18:36:54 +01: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 ];
};
}