Merge pull request #11366 from tohl/master

sbcl bump up and fix, libpst maintainer
This commit is contained in:
Michael Raskin 2015-12-01 00:58:18 +03:00
commit 9b6420f200
2 changed files with 6 additions and 5 deletions

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "sbcl-${version}"; name = "sbcl-${version}";
version = "1.3.0"; version = "1.3.1";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2"; url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2";
sha256 = "1cwrmvbx8m7n7wkcm16yz7qwx221giz7jskzkvy42pj919may36n"; sha256 = "0ggdw2wfbl0gmfkcm3qbqvhalfb1r9wfxzmi8fd38s53f7j4grd2";
}; };
patchPhase = '' patchPhase = ''
@ -63,7 +63,7 @@ stdenv.mkDerivation rec {
''; '';
buildPhase = '' buildPhase = ''
sh make.sh --prefix=$out --xc-host="${sbclBootstrapHost} --disable-debugger --no-userinit --no-sysinit" sh make.sh --prefix=$out --xc-host="${sbclBootstrapHost}"
''; '';
installPhase = '' installPhase = ''

View File

@ -18,9 +18,10 @@ stdenv.mkDerivation rec {
doCheck = true; doCheck = true;
meta = { meta = with stdenv.lib; {
homepage = http://www.five-ten-sg.com/libpst/; homepage = http://www.five-ten-sg.com/libpst/;
description = "A library to read PST (MS Outlook Personal Folders) files"; description = "A library to read PST (MS Outlook Personal Folders) files";
license = stdenv.lib.licenses.gpl2; license = licenses.gpl2;
maintainers = [maintainers.tohl];
}; };
} }