summary refs log tree commit diff
path: root/pkgs/development/perl-modules/DBD-SQLite/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/perl-modules/DBD-SQLite/default.nix')
-rw-r--r--pkgs/development/perl-modules/DBD-SQLite/default.nix25
1 files changed, 19 insertions, 6 deletions
diff --git a/pkgs/development/perl-modules/DBD-SQLite/default.nix b/pkgs/development/perl-modules/DBD-SQLite/default.nix
index 8e1faf900a06..5afa889f5433 100644
--- a/pkgs/development/perl-modules/DBD-SQLite/default.nix
+++ b/pkgs/development/perl-modules/DBD-SQLite/default.nix
@@ -1,15 +1,15 @@
-{fetchurl, buildPerlPackage, DBI, sqlite}:
+{ stdenv, fetchurl, buildPerlPackage, DBI, sqlite }:
 
 buildPerlPackage rec {
   name = "DBD-SQLite-1.35";
-  
+
   src = fetchurl {
     url = "mirror://cpan/authors/id/A/AD/ADAMK/${name}.tar.gz";
     sha256 = "0zdwnj0jmkaqb2grkh451g1jc8nsdy4sf6lhn8xd0my0a3pd227z";
   };
-  
+
   propagatedBuildInputs = [ DBI ];
-  
+
   makeMakerFlags = "SQLITE_LOCATION=${sqlite}";
 
   patches = [
@@ -17,10 +17,23 @@ buildPerlPackage rec {
     ./external-sqlite.patch
   ];
 
-  # Prevent warnings from `strip'.
-  postInstall = "chmod -R u+w $out";
+  preBuild =
+    ''
+      substituteInPlace Makefile --replace -L/usr/lib ""
+    '';
+
+  postInstall =
+    ''
+      # Prevent warnings from `strip'.
+      chmod -R u+w $out
+
+      # Get rid of a pointless copy of the SQLite sources.
+      rm -rf $out/lib/perl5/site_perl/*/*/auto/share
+    '';
 
   # Disabled because the tests can randomly fail due to timeouts
   # (e.g. "database is locked(5) at dbdimp.c line 402 at t/07busy.t").
   doCheck = false;
+
+  meta.platforms = stdenv.lib.platforms.linux;
 }