summary refs log tree commit diff
path: root/pkgs/development/libraries/smokegen/default.nix
blob: 2a93965aeb39fd0906c95361fc20f9c075ebf78c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, lib, cmake, qt4, fetchzip }:

stdenv.mkDerivation rec {
  pname = "smokegen";
  version = "4.14.3";

  src = fetchzip {
    url = "https://invent.kde.org/unmaintained/${pname}/-/archive/v${version}/${pname}-v${version}.tar.gz";
    hash = "sha256-finsoruPeJZLawIjNUJ25Pq54eaCByfALVraNQJPk7c=";
  };

  strictDeps = true;
  nativeBuildInputs = [ cmake qt4 ];
  buildInputs = [ qt4 ];

  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 ];
  };
}