Merge remote-tracking branch 'origin/master' into staging
Conflicts: pkgs/stdenv/generic/default.nix
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
{ stdenv, fetchurl, x11, ncurses }:
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
|
||||
|
||||
name = "ocaml-3.10.0";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://caml.inria.fr/pub/distrib/ocaml-3.10/${name}.tar.bz2";
|
||||
sha256 = "1ihmx1civ78s7k2hfc05z1s9vbyx2qw7fg8lnbxnfd6zxkk8878d";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation (rec {
|
||||
configureFlags = ["-no-tk" "-x11lib" x11];
|
||||
buildFlags = "world bootstrap world.opt";
|
||||
buildInputs = [x11 ncurses];
|
||||
installTargets = "install installopt";
|
||||
installTargets = "install installopt";
|
||||
patchPhase = ''
|
||||
CAT=$(type -tp cat)
|
||||
sed -e "s@/bin/cat@$CAT@" -i config/auto-aux/sharpbang
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
meta = {
|
||||
homepage = http://caml.inria.fr/ocaml;
|
||||
license = "QPL, LGPL2 (library part)";
|
||||
license = with stdenv.lib.licenses; [ qpl lgpl2 ];
|
||||
description = "Most popular variant of the Caml language";
|
||||
};
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{ stdenv, fetchurl, x11, ncurses }:
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
|
||||
|
||||
name = "metaocaml-3.09-alpha-30";
|
||||
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.metaocaml.org/dist/old/MetaOCaml_309_alpha_030.tar.gz";
|
||||
sha256 = "0migbn0zwfb7yb24dy7qfqi19sv3drqcv4369xi7xzpds2cs35fd";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation (rec {
|
||||
configureFlags = ["-no-tk" "-x11lib" x11];
|
||||
buildFlags = "world bootstrap world.opt";
|
||||
buildInputs = [x11 ncurses];
|
||||
installTargets = "install installopt";
|
||||
installTargets = "install installopt";
|
||||
patchPhase = ''
|
||||
CAT=$(type -tp cat)
|
||||
sed -e "s@/bin/cat@$CAT@" -i config/auto-aux/sharpbang
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation (rec {
|
||||
|
||||
meta = {
|
||||
homepage = http://www.metaocaml.org/;
|
||||
license = "QPL, LGPL2 (library part)";
|
||||
license = with stdenv.lib.licenses; [ qpl lgpl2 ];
|
||||
desctiption = "A compiled, type-safe, multi-stage programming language";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user