2017-08-01 04:29:53 +02:00
|
|
|
with import ../../../default.nix {};
|
|
|
|
let
|
2018-09-12 10:47:19 +02:00
|
|
|
openssl_lib_marked = import ./openssl-lib-marked.nix;
|
2017-08-01 04:29:53 +02:00
|
|
|
self = rec {
|
|
|
|
name = "ql-to-nix";
|
|
|
|
env = buildEnv { name = name; paths = buildInputs; };
|
|
|
|
buildInputs = [
|
2022-03-31 02:52:35 +02:00
|
|
|
gcc
|
2019-09-22 09:38:09 +02:00
|
|
|
openssl fuse libuv libmysqlclient libfixposix libev sqlite
|
2017-08-01 04:29:53 +02:00
|
|
|
freetds
|
2017-09-01 03:06:41 +02:00
|
|
|
lispPackages.quicklisp-to-nix lispPackages.quicklisp-to-nix-system-info
|
2017-08-01 04:29:53 +02:00
|
|
|
];
|
2021-08-16 22:12:57 +02:00
|
|
|
CPATH = lib.makeSearchPath "include"
|
|
|
|
[ libfixposix
|
|
|
|
];
|
|
|
|
LD_LIBRARY_PATH = lib.makeLibraryPath
|
|
|
|
[ cairo
|
|
|
|
freetds
|
|
|
|
fuse
|
|
|
|
gdk-pixbuf
|
|
|
|
glib
|
|
|
|
gobject-introspection
|
|
|
|
gtk3
|
|
|
|
libev
|
|
|
|
libfixposix
|
|
|
|
libmysqlclient
|
|
|
|
libuv
|
2021-10-20 16:30:31 +02:00
|
|
|
openblas
|
2021-08-16 22:12:57 +02:00
|
|
|
openssl
|
|
|
|
openssl_lib_marked
|
|
|
|
pango
|
|
|
|
postgresql
|
|
|
|
sqlite
|
|
|
|
webkitgtk
|
|
|
|
]
|
|
|
|
+ ":${libmysqlclient}/lib/mysql";
|
2017-08-01 04:29:53 +02:00
|
|
|
};
|
|
|
|
in stdenv.mkDerivation self
|