python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / smokegen / default.nix
blob643ae1064db727766de4264d78e0c97db744083d
1 { pkgs, lib, ... }:
3 pkgs.stdenv.mkDerivation rec {
4   pname = "smokegen";
5   version = "v4.14.3";
6   src = pkgs.fetchzip {
7     url = "https://invent.kde.org/unmaintained/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
8     hash = "sha256-finsoruPeJZLawIjNUJ25Pq54eaCByfALVraNQJPk7c=";
9   };
10   buildInputs = [ pkgs.cmake pkgs.qt4 ];
11   buildPhase = ''
12       cmake .
13     '';
14   meta = with lib; {
15     description = "A general purpose C++ parser with a plugin infrastructure";
16     homepage = "https://invent.kde.org/unmaintained/smokegen";
17     license = licenses.gpl2Only;
18     platforms = platforms.unix;
19     maintainers = with maintainers; [ uthar ];
20   };