1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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

View file

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