summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2022-01-15 15:32:42 +0300
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2022-01-15 16:25:38 +0100
commitc34b7c0102595649f953c93c859f83b740e7d136 (patch)
tree2d468292256233be877527f2bd4c3bb323a4bb57 /pkgs
parente924173cf33c8477668c6afbf77f8de4eaecc3b1 (diff)
downloadnixpkgs-c34b7c0102595649f953c93c859f83b740e7d136.tar
nixpkgs-c34b7c0102595649f953c93c859f83b740e7d136.tar.gz
nixpkgs-c34b7c0102595649f953c93c859f83b740e7d136.tar.bz2
nixpkgs-c34b7c0102595649f953c93c859f83b740e7d136.tar.lz
nixpkgs-c34b7c0102595649f953c93c859f83b740e7d136.tar.xz
nixpkgs-c34b7c0102595649f953c93c859f83b740e7d136.tar.zst
nixpkgs-c34b7c0102595649f953c93c859f83b740e7d136.zip
libxls: fix cross-compilation
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libxls/default.nix22
1 files changed, 16 insertions, 6 deletions
diff --git a/pkgs/development/libraries/libxls/default.nix b/pkgs/development/libraries/libxls/default.nix
index 3b9c2768f45..43c96027d08 100644
--- a/pkgs/development/libraries/libxls/default.nix
+++ b/pkgs/development/libraries/libxls/default.nix
@@ -1,21 +1,31 @@
-{ lib, stdenv, fetchurl, unzip }:
+{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, autoconf-archive }:
 
 stdenv.mkDerivation rec {
   pname = "libxls";
   version = "1.6.2";
 
-  src = fetchurl {
-    url = "https://github.com/libxls/libxls/releases/download/v${version}/libxls-${version}.tar.gz";
-    sha256 = "sha256-XazDTZS/IRWSbIDG+2nk570u1kA9Uc/0kEGpQXL143E=";
+  src = fetchFromGitHub {
+    owner = "libxls";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-vjmYByk+IDBon8xGR1+oNaEQTiJK+IVpDXsG1IyVNoY=";
   };
 
-  nativeBuildInputs = [ unzip ];
+  patches = [
+    # Fix cross-compilation
+    (fetchpatch {
+      url = "https://github.com/libxls/libxls/commit/007e63c1f5e19bc73292f267c85d7dd14e9ecb38.patch";
+      sha256 = "sha256-PjPHuXth4Yaq9nVfk5MYJMRo5B0R6YA1KEqgwfjF3PM=";
+    })
+  ];
+
+  nativeBuildInputs = [ autoreconfHook autoconf-archive ];
 
   enableParallelBuilding = true;
 
   meta = with lib; {
     description = "Extract Cell Data From Excel xls files";
-    homepage = "https://sourceforge.net/projects/libxls/";
+    homepage = "https://github.com/libxls/libxls";
     license = licenses.bsd2;
     platforms = platforms.unix;
     maintainers = with maintainers; [ abbradar ];