polyml: 5.6 -> 5.7
- fetchurl -> fetchFromGitHub - use `with stdenv.lib` in meta - add darwin to platforms - add yurrriq to maintainers
This commit is contained in:
parent
b349d4b899
commit
478e88d13e
@ -1,11 +1,8 @@
|
|||||||
{stdenv, fetchurl, autoreconfHook}:
|
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
version = "5.6";
|
|
||||||
in
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "polyml-${version}";
|
name = "polyml-${version}";
|
||||||
|
version = "5.7";
|
||||||
|
|
||||||
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
||||||
substituteInPlace configure.ac --replace stdc++ c++
|
substituteInPlace configure.ac --replace stdc++ c++
|
||||||
@ -13,21 +10,21 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
|
buildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/polyml/polyml.${version}.tar.gz";
|
owner = "polyml";
|
||||||
sha256 = "05d6l2a5m9jf32a8kahwg2p2ph4x9rjf1nsl83331q3gwn5bkmr0";
|
repo = "polyml";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "10nsljmcl0zjbcc7ifc991ypwfwq5gh4rcp5rg4nnb706c6bs16y";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Standard ML compiler and interpreter";
|
description = "Standard ML compiler and interpreter";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Poly/ML is a full implementation of Standard ML.
|
Poly/ML is a full implementation of Standard ML.
|
||||||
'';
|
'';
|
||||||
homepage = http://www.polyml.org/;
|
homepage = http://www.polyml.org/;
|
||||||
license = stdenv.lib.licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = with platforms; (linux ++ darwin);
|
||||||
maintainers = [ #Add your name here!
|
maintainers = with maintainers; [ z77z yurrriq ];
|
||||||
stdenv.lib.maintainers.z77z
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user