summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-01-15 02:51:24 +0100
committerGitHub <noreply@github.com>2023-01-15 02:51:24 +0100
commit09091c7521e559542d0a720a9cccb363875d62e6 (patch)
treef75117e38bf87e191a56e76d87daa81df6946bc6
parentb40f0196f35a53d54b27dfdd023b1f79b4a075d7 (diff)
parentb2bdec584c7249430aa033cb19fa6d149bfdfe12 (diff)
downloadnixpkgs-09091c7521e559542d0a720a9cccb363875d62e6.tar
nixpkgs-09091c7521e559542d0a720a9cccb363875d62e6.tar.gz
nixpkgs-09091c7521e559542d0a720a9cccb363875d62e6.tar.bz2
nixpkgs-09091c7521e559542d0a720a9cccb363875d62e6.tar.lz
nixpkgs-09091c7521e559542d0a720a9cccb363875d62e6.tar.xz
nixpkgs-09091c7521e559542d0a720a9cccb363875d62e6.tar.zst
nixpkgs-09091c7521e559542d0a720a9cccb363875d62e6.zip
Merge pull request #209694 from wegank/skypeexport-darwin
-rw-r--r--pkgs/applications/networking/instant-messengers/SkypeExport/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix b/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix
index a150014daa7..f402faf965b 100644
--- a/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix
+++ b/pkgs/applications/networking/instant-messengers/SkypeExport/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, cmake, boost166 }:
+{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, boost }:
 
 stdenv.mkDerivation rec {
   pname = "SkypeExport";
@@ -11,8 +11,16 @@ stdenv.mkDerivation rec {
     sha256 = "1ilkh0s3dz5cp83wwgmscnfmnyck5qcwqg1yxp9zv6s356dxnbak";
   };
 
+  patches = [
+    (fetchpatch {
+      name = "boost167.patch";
+      url = "https://github.com/Temptin/SkypeExport/commit/ef60f2e4fc9e4a5764c8d083a73b585457bc10b1.patch";
+      sha256 = "sha256-t+/v7c66OULmQCD/sNt+iDJeQ/6UG0CJ8uQY2PVSFQo=";
+    })
+  ];
+
   nativeBuildInputs = [ cmake ];
-  buildInputs = [ boost166 ];
+  buildInputs = [ boost ];
 
   preConfigure = "cd src/SkypeExport/_gccbuild/linux";
   installPhase = "install -Dt $out/bin SkypeExport";
@@ -21,7 +29,7 @@ stdenv.mkDerivation rec {
     description = "Export Skype history to HTML";
     homepage = "https://github.com/Temptin/SkypeExport";
     license = licenses.gpl2;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
     maintainers = with maintainers; [ yana ];
   };
 }