mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
21 lines
470 B
Nix
21 lines
470 B
Nix
|
{pkgs, buildLispPackage, quicklisp-to-nix-packages}:
|
||
|
{
|
||
|
iterate = x: {
|
||
|
overrides = x: {
|
||
|
configurePhase="buildPhase(){ true; }";
|
||
|
};
|
||
|
};
|
||
|
cl-fuse = x: {
|
||
|
propagatedBuildInputs = [pkgs.fuse];
|
||
|
overrides = x : {
|
||
|
configurePhase = ''
|
||
|
export CL_SOURCE_REGISTRY="$CL_SOURCE_REGISTRY:$PWD"
|
||
|
export makeFlags="$makeFlags LISP=common-lisp.sh"
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
hunchentoot = x: {
|
||
|
propagatedBuildInputs = [pkgs.openssl];
|
||
|
};
|
||
|
}
|