mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
8641a0ace9
Add some more packages
24 lines
547 B
Nix
24 lines
547 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];
|
|
};
|
|
iolib = x: {
|
|
propagatedBuildInputs = [pkgs.libfixposix pkgs.gcc];
|
|
};
|
|
}
|