incus: fix container tests from image rename (#360305)
[NixPkgs.git] / pkgs / development / lisp-modules / asdf / 3.3.nix
blob3981ed272a236f0fefb434b87396e3ab0c530814
1 { lib, stdenv, fetchurl, fetchpatch, texinfo, texLive, perl }:
3 stdenv.mkDerivation rec {
4   pname = "asdf";
5   version = "3.3.6";
7   src = fetchurl {
8     url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz";
9     sha256 = "sha256-NkjvNlLqJnBAfOxC9ECTtmuS5K+0v5ZXOw2xt8l7vgk=";
10   };
12   patches = [
13     # Clasp bytecode support
14     (fetchpatch {
15       url = "https://github.com/clasp-developers/asdf/compare/fe6e3ab741c71ecebc8503e20637d4c940326421..615771b3d0ee6ebb158134769e88ba421c2ea7d1.diff";
16       hash = "sha256-jrv/vH4uxLVvaCK4UicNzIePQ12lscA0auwgTMb4QwI=";
17     })
18   ];
20   strictDeps = true;
21   nativeBuildInputs = [
22     texinfo
23     texLive
24     perl
25   ];
27   buildPhase = ''
28     make build/asdf.lisp
29     make -C doc asdf.info asdf.html
30   '';
31   installPhase = ''
32     mkdir -p "$out"/lib/common-lisp/asdf/
33     mkdir -p "$out"/share/doc/asdf/
34     cp -r ./* "$out"/lib/common-lisp/asdf/
35     cp -r doc/* "$out"/share/doc/asdf/
36     ln -s  "$out"/lib/common-lisp/{asdf/uiop,uiop}
37   '';
39   meta = with lib; {
40     description = "Standard software-system definition library for Common Lisp";
41     license = licenses.mit;
42     maintainers = with maintainers; [ raskin ];
43     platforms = platforms.unix;
44   };