2021-12-24 04:21:11 +00:00
|
|
|
{ lib, stdenv, fetchurl, texinfo, texLive, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "asdf";
|
|
|
|
version = "3.1.7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz";
|
|
|
|
sha256 = "sha256-+P+FLM1mr2KRdj7bfhWq4ync86bJS/uE0Jm/E/e4HL0=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2021-12-24 04:21:11 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [
|
2021-12-24 04:21:11 +00:00
|
|
|
texinfo
|
|
|
|
texLive
|
|
|
|
perl
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
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}
|
|
|
|
'';
|
2021-12-24 04:21:11 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2021-01-17 00:15:33 +00:00
|
|
|
description = "Standard software-system definition library for Common Lisp";
|
2021-12-24 04:21:11 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
2021-02-05 17:12:51 +00:00
|
|
|
platforms = platforms.unix;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|