summaryrefslogtreecommitdiffstats
path: root/pkgs/development/perl-modules/DBD-SQLite
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-10-21 19:59:52 +0000
committervolth <volth@volth.com>2019-10-22 07:07:18 +0000
commit396190acb1e22d1dc523d7367f0619c113d8d11c (patch)
treee7da678dc964db4d4c6c3d511713dbd05b9b782d /pkgs/development/perl-modules/DBD-SQLite
parente1b6b9056d4001030b65ccea649b75b58c1e77d8 (diff)
perlPackages: move CPAN libs to perl-packages.nix and non-CPAN libs out of perl-packages.nix
Diffstat (limited to 'pkgs/development/perl-modules/DBD-SQLite')
-rw-r--r--pkgs/development/perl-modules/DBD-SQLite/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/perl-modules/DBD-SQLite/default.nix b/pkgs/development/perl-modules/DBD-SQLite/default.nix
deleted file mode 100644
index 5a24687c2b01..000000000000
--- a/pkgs/development/perl-modules/DBD-SQLite/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, fetchurl, buildPerlPackage, perl, DBI, sqlite }:
-
-buildPerlPackage {
- pname = "DBD-SQLite";
- version = "1.62";
-
- src = fetchurl {
- url = mirror://cpan/authors/id/I/IS/ISHIGAKI/DBD-SQLite-1.62.tar.gz;
- sha256 = "0p78ri1q6xpc1i98i6mlriv8n66iz8r5r11dlsknjm4y58rfz0mx";
- };
-
- propagatedBuildInputs = [ DBI ];
- buildInputs = [ sqlite ];
-
- patches = [
- # Support building against our own sqlite.
- ./external-sqlite.patch
- ];
-
- makeMakerFlags = "SQLITE_INC=${sqlite.dev}/include SQLITE_LIB=${sqlite.out}/lib";
-
- postInstall = ''
- # Get rid of a pointless copy of the SQLite sources.
- rm -rf $out/${perl.libPrefix}/*/*/auto/share
- '';
-
- meta = with stdenv.lib; {
- description = "Self Contained SQLite RDBMS in a DBI Driver";
- license = with licenses; [ artistic1 gpl1Plus ];
- platforms = platforms.unix;
- };
-}