mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
28 lines
714 B
Nix
28 lines
714 B
Nix
{ stdenv, lib, cmake, qt4, smokegen, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smokeqt";
|
|
version = "4.14.3";
|
|
|
|
src = fetchzip {
|
|
url = "https://invent.kde.org/unmaintained/${pname}/-/archive/v${version}/${pname}-v${version}.tar.gz";
|
|
hash = "sha256-8FiEGF8gduVw5I/bi2wExGUWmjIjYEhWpjpXKJGBNMg=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ cmake smokegen ];
|
|
buildInputs = [ qt4 ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_CXX_STANDARD=98"
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|