nixpkgs/pkgs/development/lisp-modules/asdf/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-27 05:59:00 +00:00
{lib, stdenv, fetchurl, texinfo, texLive, perl}:
let
s = # Generated upstream information
rec {
baseName="asdf";
2020-02-19 15:09:12 +00:00
version="3.3.4";
name="${baseName}-${version}";
2020-02-19 15:09:12 +00:00
hash="07npcxgq2m07w78k8gnz9i73kbw6ky2zh2pylhh9b69jvncdqkpy";
url="http://common-lisp.net/project/asdf/archives/asdf-3.3.4.tar.gz";
sha256="07npcxgq2m07w78k8gnz9i73kbw6ky2zh2pylhh9b69jvncdqkpy";
};
buildInputs = [
2015-08-08 18:01:19 +00:00
texinfo texLive perl
];
in
stdenv.mkDerivation {
inherit (s) name version;
inherit buildInputs;
src = fetchurl {
inherit (s) url sha256;
};
2017-02-01 18:03:56 +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-01-27 05:59:00 +00:00
meta = with lib; {
inherit (s) version;
description = "Standard software-system definition library for Common Lisp";
2021-01-27 05:59:00 +00:00
license = licenses.mit ;
maintainers = [maintainers.raskin];
platforms = platforms.unix;
};
}