mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
fb8379cc76
* update Quicklisp distinfo * regenerate packages * add cl-html-parse and closure-html * add proper mariadb library path to fix cl-mysql * escape memoization filenames for systems * lispPackages.cl-postgres: keep simple-date in the same package
16 lines
601 B
Nix
16 lines
601 B
Nix
with import ../../../default.nix {};
|
|
let
|
|
self = rec {
|
|
name = "ql-to-nix";
|
|
env = buildEnv { name = name; paths = buildInputs; };
|
|
buildInputs = [
|
|
gcc stdenv
|
|
openssl fuse libuv mysql.connector-c libfixposix libev sqlite
|
|
freetds
|
|
lispPackages.quicklisp-to-nix lispPackages.quicklisp-to-nix-system-info
|
|
];
|
|
CPATH = "${libfixposix}/include";
|
|
LD_LIBRARY_PATH = "${openssl.out}/lib:${fuse}/lib:${libuv}/lib:${libev}/lib:${mysql.connector-c}/lib:${mysql.connector-c}/lib/mysql:${postgresql.lib}/lib:${sqlite.out}/lib:${libfixposix}/lib:${freetds}/lib";
|
|
};
|
|
in stdenv.mkDerivation self
|