567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
46 lines
931 B
Nix
46 lines
931 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
texinfo,
|
|
texLive,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "asdf";
|
|
version = "2.26";
|
|
|
|
src = fetchurl {
|
|
url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz";
|
|
sha256 = "sha256-tuUuIlZcS+a0izXeJl3Ckp+/PYAWkZ0+Cw7blwkh9+M=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
texinfo
|
|
texLive
|
|
perl
|
|
];
|
|
|
|
buildPhase = ''
|
|
make asdf.lisp
|
|
mkdir build
|
|
ln -s ../asdf.lisp build
|
|
'';
|
|
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/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Standard software-system definition library for Common Lisp";
|
|
homepage = "https://asdf.common-lisp.dev/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|