ASDF: 3.1.4 -> 3.1.5
This commit is contained in:
parent
1caa629b33
commit
3e86c32254
1 changed files with 6 additions and 7 deletions
|
@ -1,16 +1,16 @@
|
||||||
{stdenv, fetchurl, texinfo, texLive}:
|
{stdenv, fetchurl, texinfo, texLive, perl}:
|
||||||
let
|
let
|
||||||
s = # Generated upstream information
|
s = # Generated upstream information
|
||||||
rec {
|
rec {
|
||||||
baseName="asdf";
|
baseName="asdf";
|
||||||
version="3.1.4";
|
version="3.1.5";
|
||||||
name="${baseName}-${version}";
|
name="${baseName}-${version}";
|
||||||
hash="0hyc2g22khcmvxmlcaq0xbxqhq59spgc2nc1s0gz1r9mcgrzm2xw";
|
hash="1barrkj549d24pyh86gdc8v3vvsv4w7k0kkfg0zzrvhg8x8al19h";
|
||||||
url="http://common-lisp.net/project/asdf/archives/asdf-3.1.4.tar.gz";
|
url="http://common-lisp.net/project/asdf/archives/asdf-3.1.5.tar.gz";
|
||||||
sha256="0hyc2g22khcmvxmlcaq0xbxqhq59spgc2nc1s0gz1r9mcgrzm2xw";
|
sha256="1barrkj549d24pyh86gdc8v3vvsv4w7k0kkfg0zzrvhg8x8al19h";
|
||||||
};
|
};
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
texinfo texLive
|
texinfo texLive perl
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
|
@ -19,7 +19,6 @@ stdenv.mkDerivation {
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
inherit (s) url sha256;
|
inherit (s) url sha256;
|
||||||
};
|
};
|
||||||
sourceRoot=".";
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
make build/asdf.lisp
|
make build/asdf.lisp
|
||||||
make -C doc asdf.info asdf.html
|
make -C doc asdf.info asdf.html
|
||||||
|
|
Loading…
Reference in a new issue