2022-12-08 22:19:53 +00:00
|
|
|
{ stdenv, lib, cmake, qt4, fetchzip }:
|
2022-10-09 17:34:49 +00:00
|
|
|
|
2022-12-08 22:19:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-10-09 17:34:49 +00:00
|
|
|
pname = "smokegen";
|
2022-12-08 22:19:53 +00:00
|
|
|
version = "4.14.3";
|
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://invent.kde.org/unmaintained/${pname}/-/archive/v${version}/${pname}-v${version}.tar.gz";
|
2022-10-09 17:34:49 +00:00
|
|
|
hash = "sha256-finsoruPeJZLawIjNUJ25Pq54eaCByfALVraNQJPk7c=";
|
|
|
|
};
|
2022-12-08 22:19:53 +00:00
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ cmake qt4 ];
|
|
|
|
buildInputs = [ qt4 ];
|
|
|
|
|
2022-10-09 17:34:49 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A general purpose C++ parser with a plugin infrastructure";
|
|
|
|
homepage = "https://invent.kde.org/unmaintained/smokegen";
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ uthar ];
|
|
|
|
};
|
|
|
|
}
|