{ungoogled-,}chromium,chromedriver: 130.0.6723.58 -> 130.0.6723.69 (#351519)
[NixPkgs.git] / pkgs / development / lisp-modules / asdf / 2.26.nix
blobdbf81bb76a5f74ed2b41829ca12714d294e4b5aa
1 { lib, stdenv, fetchurl, texinfo, texLive, perl }:
3 stdenv.mkDerivation rec {
4   pname = "asdf";
5   version = "2.26";
7   src = fetchurl {
8     url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz";
9     sha256 = "sha256-tuUuIlZcS+a0izXeJl3Ckp+/PYAWkZ0+Cw7blwkh9+M=";
10   };
12   strictDeps = true;
13   nativeBuildInputs = [
14     texinfo
15     texLive
16     perl
17   ];
19   buildPhase = ''
20     make asdf.lisp
21     mkdir build
22     ln -s ../asdf.lisp build
23   '';
24   installPhase = ''
25     mkdir -p "$out"/lib/common-lisp/asdf/
26     mkdir -p "$out"/share/doc/asdf/
27     cp -r ./* "$out"/lib/common-lisp/asdf/
28     cp -r doc/* "$out"/share/doc/asdf/
29     ln -s  "$out"/lib/common-lisp/{asdf/uiop,uiop}
30   '';
32   meta = with lib; {
33     description = "Standard software-system definition library for Common Lisp";
34     license = licenses.mit;
35     maintainers = with maintainers; [ raskin ];
36     platforms = platforms.linux;
37   };