mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
The index hash length problem only happens with fetchpatch2, not
fetchpatch. Don't cargo cult fixing this when it's not a problem.
This reverts most of commit 6388411ec2,
except:
- Conflicts:
- pkgs/development/ocaml-modules/mysql/default.nix was deleted
- fetchpatch2 changes were not reverted:
- pkgs/by-name/gi/gixy/package.nix
- pkgs/development/python-modules/mohawk/default.nix
- pkgs/development/python-modules/pyexcel-ods/default.nix
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fetchpatch,
|
|
texinfo,
|
|
texLive,
|
|
perl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "asdf";
|
|
version = "3.3.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://common-lisp.net/project/asdf/archives/asdf-${version}.tar.gz";
|
|
sha256 = "sha256-NkjvNlLqJnBAfOxC9ECTtmuS5K+0v5ZXOw2xt8l7vgk=";
|
|
};
|
|
|
|
patches = [
|
|
# Clasp bytecode support
|
|
(fetchpatch {
|
|
url = "https://github.com/clasp-developers/asdf/compare/fe6e3ab741c71ecebc8503e20637d4c940326421..615771b3d0ee6ebb158134769e88ba421c2ea7d1.diff";
|
|
hash = "sha256-jrv/vH4uxLVvaCK4UicNzIePQ12lscA0auwgTMb4QwI=";
|
|
})
|
|
];
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
texinfo
|
|
texLive
|
|
perl
|
|
];
|
|
|
|
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}
|
|
'';
|
|
|
|
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.unix;
|
|
};
|
|
}
|