mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
6e2956f10b
Same flags as in from debian/arch builds are used (mixed bytecode mode). This release bundles dependencies that were previously fetched from their git repositories. It means that the repo-pinning code can be deleted. Clasp needs ASDF with changes not yet merged to the canonical repository. Such a patch was added to the asdf derivation to avoid adding conditionals in the lisp builder.
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, texinfo, texLive, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "asdf";
|
|
version = "3.3.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz";
|
|
sha256 = "sha256-NkjvNlLqJnBAfOxC9ECTtmuS5K+0v5ZXOw2xt8l7vgk=";
|
|
};
|
|
|
|
patches = [
|
|
# Clasp bytecode support
|
|
(fetchpatch {
|
|
url = "https://github.com/clasp-developers/asdf/compare/fe6e3ab741c71ecebc8503e20637d4c940326421..615771b3d0ee6ebb158134769e88ba421c2ea7d1.diff";
|
|
hash = "sha256-jrv/vH4uxLVvaCK4UicNzIePQ12lscA0auwgTMb4QwI=";
|
|
})
|
|
];
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
texinfo
|
|
texLive
|
|
perl
|
|
];
|
|
|
|
buildPhase = ''
|
|
make build/asdf.lisp
|
|
make -C doc asdf.info asdf.html
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p "$out"/lib/common-lisp/asdf/
|
|
mkdir -p "$out"/share/doc/asdf/
|
|
cp -r ./* "$out"/lib/common-lisp/asdf/
|
|
cp -r doc/* "$out"/share/doc/asdf/
|
|
ln -s "$out"/lib/common-lisp/{asdf/uiop,uiop}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Standard software-system definition library for Common Lisp";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|