01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
21 lines
661 B
Nix
21 lines
661 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
pname = "smokegen";
|
|
version = "v4.14.3";
|
|
src = pkgs.fetchzip {
|
|
url = "https://invent.kde.org/unmaintained/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
|
|
hash = "sha256-finsoruPeJZLawIjNUJ25Pq54eaCByfALVraNQJPk7c=";
|
|
};
|
|
buildInputs = [ pkgs.cmake pkgs.qt4 ];
|
|
buildPhase = ''
|
|
cmake .
|
|
'';
|
|
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 ];
|
|
};
|
|
}
|