summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-12-18 04:20:00 -0500
committerMatthieu Coudron <coudron@iij.ad.jp>2019-12-19 16:56:01 +0100
commit6b935eb62a7616ad87cd428f1b34a8fb46548a4d (patch)
treeb29290580fc4f948f337ed813547dfcf779fa521 /pkgs
parentd7a0236c4c284aefa083b4693cee2532c9502603 (diff)
downloadnixpkgs-6b935eb62a7616ad87cd428f1b34a8fb46548a4d.tar
nixpkgs-6b935eb62a7616ad87cd428f1b34a8fb46548a4d.tar.gz
nixpkgs-6b935eb62a7616ad87cd428f1b34a8fb46548a4d.tar.bz2
nixpkgs-6b935eb62a7616ad87cd428f1b34a8fb46548a4d.tar.lz
nixpkgs-6b935eb62a7616ad87cd428f1b34a8fb46548a4d.tar.xz
nixpkgs-6b935eb62a7616ad87cd428f1b34a8fb46548a4d.tar.zst
nixpkgs-6b935eb62a7616ad87cd428f1b34a8fb46548a4d.zip
lgogdownloader: fix build
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/lgogdownloader/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/games/lgogdownloader/default.nix b/pkgs/games/lgogdownloader/default.nix
index 505d98c92db..dc6ebd396ed 100644
--- a/pkgs/games/lgogdownloader/default.nix
+++ b/pkgs/games/lgogdownloader/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchFromGitHub, cmake, pkgconfig, curl, boost, liboauth, jsoncpp
-, htmlcxx, rhash, tinyxml-2, help2man }:
+, htmlcxx, rhash, tinyxml-2, help2man, fetchpatch }:
 
 stdenv.mkDerivation rec {
   pname = "lgogdownloader";
@@ -16,6 +16,14 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ curl boost liboauth jsoncpp htmlcxx rhash tinyxml-2 ];
 
+  patches = [
+    # Fix find_path for newer jsoncpp. Remove with the next release
+    (fetchpatch {
+      url = "https://github.com/Sude-/lgogdownloader/commit/ff353126ecda61824cf866d3807c9ebada96282e.patch";
+      sha256 = "1xr1lwxlrncrj662s9l1is1x1mhs1jbwlj8qafixz5hw2kx22w19";
+    })
+  ];
+
   meta = {
     homepage = https://github.com/Sude-/lgogdownloader;
     description = "Unofficial downloader to GOG.com for Linux users. It uses the same API as the official GOGDownloader";