mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
smlnjBootstrap: move dependents over to regular smlnj
smlnjBootstrap seems to exist as a workaround for a failing x86_64-darwin build of regular smlnj. Now this is fixed, the workaround can be removed. (aarch64-darwin is being actively worked on by the smlnj project, and currently is supported by neither derivation.)
This commit is contained in:
parent
9fdc5e10ee
commit
4a4fc6c9c9
@ -1,3 +1,7 @@
|
||||
# This derivation should be redundant, now that regular smlnj works on Darwin,
|
||||
# and is preserved only for pre-existing direct usage. New use cases should
|
||||
# just use the regular smlnj derivation.
|
||||
|
||||
{ lib, stdenv, fetchurl, cpio, rsync, xar, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -12055,6 +12055,7 @@ in
|
||||
|
||||
shmig = callPackage ../development/tools/database/shmig { };
|
||||
|
||||
# smlnjBootstrap should be redundant, now that smlnj works on Darwin natively
|
||||
smlnjBootstrap = callPackage ../development/compilers/smlnj/bootstrap.nix { };
|
||||
smlnj = callPackage ../development/compilers/smlnj {
|
||||
inherit (darwin) Libsystem;
|
||||
@ -30058,11 +30059,7 @@ in
|
||||
|
||||
iprover = callPackage ../applications/science/logic/iprover { };
|
||||
|
||||
jonprl = callPackage ../applications/science/logic/jonprl {
|
||||
smlnj = if stdenv.isDarwin
|
||||
then smlnjBootstrap
|
||||
else smlnj;
|
||||
};
|
||||
jonprl = callPackage ../applications/science/logic/jonprl { };
|
||||
|
||||
key = callPackage ../applications/science/logic/key { };
|
||||
|
||||
@ -30121,19 +30118,11 @@ in
|
||||
|
||||
tptp = callPackage ../applications/science/logic/tptp {};
|
||||
|
||||
celf = callPackage ../applications/science/logic/celf {
|
||||
smlnj = if stdenv.isDarwin
|
||||
then smlnjBootstrap
|
||||
else smlnj;
|
||||
};
|
||||
celf = callPackage ../applications/science/logic/celf { };
|
||||
|
||||
fast-downward = callPackage ../applications/science/logic/fast-downward { };
|
||||
|
||||
twelf = callPackage ../applications/science/logic/twelf {
|
||||
smlnj = if stdenv.isDarwin
|
||||
then smlnjBootstrap
|
||||
else smlnj;
|
||||
};
|
||||
twelf = callPackage ../applications/science/logic/twelf { };
|
||||
|
||||
verifast = callPackage ../applications/science/logic/verifast {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user