5048b0d1f9
Added a wrapper package that creates symlinks to OpenSSL libraries with the actual versions, because we have 1.0.2 with .so-suffix .1.0.0 and cl-async-ssl is unhappy because of that. I continue to dislike cl-postgres and simple-date upstream packaging.
37 lines
1.5 KiB
Nix
37 lines
1.5 KiB
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''cl-dbi'';
|
|
version = ''20180831-git'';
|
|
|
|
description = '''';
|
|
|
|
deps = [ args."alexandria" args."bordeaux-threads" args."cl-annot" args."cl-syntax" args."cl-syntax-annot" args."closer-mop" args."dbi" args."named-readtables" args."split-sequence" args."trivial-types" ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/cl-dbi/2018-08-31/cl-dbi-20180831-git.tgz'';
|
|
sha256 = ''19cpzdzjjzm0if77dycsk8lj91ihwr51mbjmf3fx0wqwr8k5y0g9'';
|
|
};
|
|
|
|
packageName = "cl-dbi";
|
|
|
|
asdFilesToKeep = ["cl-dbi.asd"];
|
|
overrides = x: x;
|
|
}
|
|
/* (SYSTEM cl-dbi DESCRIPTION NIL SHA256
|
|
19cpzdzjjzm0if77dycsk8lj91ihwr51mbjmf3fx0wqwr8k5y0g9 URL
|
|
http://beta.quicklisp.org/archive/cl-dbi/2018-08-31/cl-dbi-20180831-git.tgz
|
|
MD5 2fc95bff95d3cd25e3afeb003ee009d2 NAME cl-dbi FILENAME cl-dbi DEPS
|
|
((NAME alexandria FILENAME alexandria)
|
|
(NAME bordeaux-threads FILENAME bordeaux-threads)
|
|
(NAME cl-annot FILENAME cl-annot) (NAME cl-syntax FILENAME cl-syntax)
|
|
(NAME cl-syntax-annot FILENAME cl-syntax-annot)
|
|
(NAME closer-mop FILENAME closer-mop) (NAME dbi FILENAME dbi)
|
|
(NAME named-readtables FILENAME named-readtables)
|
|
(NAME split-sequence FILENAME split-sequence)
|
|
(NAME trivial-types FILENAME trivial-types))
|
|
DEPENDENCIES
|
|
(alexandria bordeaux-threads cl-annot cl-syntax cl-syntax-annot closer-mop
|
|
dbi named-readtables split-sequence trivial-types)
|
|
VERSION 20180831-git SIBLINGS
|
|
(dbd-mysql dbd-postgres dbd-sqlite3 dbi-test dbi) PARASITES NIL) */
|