summary refs log tree commit diff
path: root/pkgs/games/pro-office-calculator
diff options
context:
space:
mode:
authorPhilipp Middendorf <middendorf@plapadoo.de>2019-02-13 18:14:19 +0100
committerPhilipp Middendorf <middendorf@plapadoo.de>2019-02-13 18:14:19 +0100
commite4239350df61939414e40da3d8044a7221f13d1c (patch)
tree148ee073d32d5d495f0316116023a3a3c7f6598a /pkgs/games/pro-office-calculator
parent58d69519718d71f5794c87404bac4ee44b16a5cd (diff)
downloadnixpkgs-e4239350df61939414e40da3d8044a7221f13d1c.tar
nixpkgs-e4239350df61939414e40da3d8044a7221f13d1c.tar.gz
nixpkgs-e4239350df61939414e40da3d8044a7221f13d1c.tar.bz2
nixpkgs-e4239350df61939414e40da3d8044a7221f13d1c.tar.lz
nixpkgs-e4239350df61939414e40da3d8044a7221f13d1c.tar.xz
nixpkgs-e4239350df61939414e40da3d8044a7221f13d1c.tar.zst
nixpkgs-e4239350df61939414e40da3d8044a7221f13d1c.zip
pro-office-calculator: 1.0.6 -> 1.0.13
Diffstat (limited to 'pkgs/games/pro-office-calculator')
-rw-r--r--pkgs/games/pro-office-calculator/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/games/pro-office-calculator/default.nix b/pkgs/games/pro-office-calculator/default.nix
index f7eebea7563..0fcf5c60c2b 100644
--- a/pkgs/games/pro-office-calculator/default.nix
+++ b/pkgs/games/pro-office-calculator/default.nix
@@ -1,23 +1,17 @@
 { stdenv, fetchFromGitHub, tinyxml-2, cmake, qtbase, qtmultimedia, fetchpatch }:
 stdenv.mkDerivation rec {
-  version = "1.0.6";
+  version = "1.0.13";
   name = "pro-office-calculator-${version}";
 
   src = fetchFromGitHub {
     owner  = "RobJinman";
     repo   = "pro_office_calc";
     rev    = "v${version}";
-    sha256 = "1irgch6cbc2f8il1zh8qf98m43h41hma80dxzz9c7xvbvl99lybd";
+    sha256 = "1v75cysargmp4fk7px5zgib1p6h5ya4w39rndbzk614fcnv0iipd";
   };
 
   buildInputs = [ qtbase qtmultimedia tinyxml-2 ];
 
-  # This fixes a bug resulting in "illegal instruction"
-  patches = [(fetchpatch {
-    url = https://github.com/RobJinman/pro_office_calc/commit/806180d69d4af6b3183873f471c57bfdaf529560.patch;
-    sha256 = "1rcdjy233yf3kv4v18c82jyg08dykj2qspvg08n5b3bir870sbxz";
-  })];
-
   nativeBuildInputs = [ cmake ];
 
   meta = with stdenv.lib; {