mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{lib, stdenv, fetchurl, autoreconfHook, fetchpatch }:
|
|
|
|
let
|
|
version = "5.6";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "polyml";
|
|
inherit version;
|
|
|
|
prePatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
substituteInPlace configure.ac --replace stdc++ c++
|
|
'';
|
|
|
|
patches = [
|
|
# glibc 2.34 compat
|
|
(fetchpatch {
|
|
url = "https://src.fedoraproject.org/rpms/polyml/raw/4d8868ca5a1ce3268f212599a321f8011c950496/f/polyml-pthread-stack-min.patch";
|
|
sha256 = "1h5ihg2sxld9ymrl3f2mpnbn2242ka1fsa0h4gl9h90kndvg6kby";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin autoreconfHook;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/polyml/polyml.${version}.tar.gz";
|
|
sha256 = "05d6l2a5m9jf32a8kahwg2p2ph4x9rjf1nsl83331q3gwn5bkmr0";
|
|
};
|
|
|
|
meta = {
|
|
description = "Standard ML compiler and interpreter";
|
|
longDescription = ''
|
|
Poly/ML is a full implementation of Standard ML.
|
|
'';
|
|
homepage = "https://www.polyml.org/";
|
|
license = lib.licenses.lgpl21;
|
|
platforms = with lib.platforms; linux;
|
|
maintainers = [ #Add your name here!
|
|
lib.maintainers.maggesi
|
|
];
|
|
};
|
|
}
|