python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / pro-office-calculator / default.nix
blob381a6e8742b0a92b0500a244f11bad9e194420b4
1 { mkDerivation, lib, fetchFromGitHub, tinyxml-2, cmake, qtbase, qtmultimedia }:
2 mkDerivation rec {
3   version = "1.0.13";
4   pname = "pro-office-calculator";
6   src = fetchFromGitHub {
7     owner  = "RobJinman";
8     repo   = "pro_office_calc";
9     rev    = "v${version}";
10     sha256 = "1v75cysargmp4fk7px5zgib1p6h5ya4w39rndbzk614fcnv0iipd";
11   };
13   buildInputs = [ qtbase qtmultimedia tinyxml-2 ];
15   nativeBuildInputs = [ cmake ];
17   meta = with lib; {
18     description = "A completely normal office calculator";
19     homepage = "https://proofficecalculator.com/";
20     maintainers = [ maintainers.pmiddend ];
21     platforms = platforms.linux;
22     license = licenses.gpl3;
23   };