diff --git a/pkgs/development/lisp-modules/asdf/default.nix b/pkgs/development/lisp-modules/asdf/default.nix index 33cd07b48076..6b7b88469b1e 100644 --- a/pkgs/development/lisp-modules/asdf/default.nix +++ b/pkgs/development/lisp-modules/asdf/default.nix @@ -1,16 +1,16 @@ -{stdenv, fetchurl, texinfo, texLive}: +{stdenv, fetchurl, texinfo, texLive, perl}: let s = # Generated upstream information rec { baseName="asdf"; - version="3.1.4"; + version="3.1.5"; name="${baseName}-${version}"; - hash="0hyc2g22khcmvxmlcaq0xbxqhq59spgc2nc1s0gz1r9mcgrzm2xw"; - url="http://common-lisp.net/project/asdf/archives/asdf-3.1.4.tar.gz"; - sha256="0hyc2g22khcmvxmlcaq0xbxqhq59spgc2nc1s0gz1r9mcgrzm2xw"; + hash="1barrkj549d24pyh86gdc8v3vvsv4w7k0kkfg0zzrvhg8x8al19h"; + url="http://common-lisp.net/project/asdf/archives/asdf-3.1.5.tar.gz"; + sha256="1barrkj549d24pyh86gdc8v3vvsv4w7k0kkfg0zzrvhg8x8al19h"; }; buildInputs = [ - texinfo texLive + texinfo texLive perl ]; in stdenv.mkDerivation { @@ -19,7 +19,6 @@ stdenv.mkDerivation { src = fetchurl { inherit (s) url sha256; }; - sourceRoot="."; buildPhase = '' make build/asdf.lisp make -C doc asdf.info asdf.html