mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +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" ```
37 lines
994 B
Nix
37 lines
994 B
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.94";
|
|
pname = "pcg-c";
|
|
|
|
src = fetchzip {
|
|
url = "http://www.pcg-random.org/downloads/${pname}-${version}.zip";
|
|
sha256 = "0smm811xbvs03a5nc2668zd0178wnyri2h023pqffy767bpy1vlv";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
patches = [
|
|
./prefix-variable.patch
|
|
];
|
|
|
|
preInstall = ''
|
|
sed -i s,/usr/local,$out, Makefile
|
|
mkdir -p $out/lib $out/include
|
|
'';
|
|
|
|
meta = {
|
|
description = "Family of better random number generators";
|
|
homepage = "https://www.pcg-random.org/";
|
|
license = lib.licenses.asl20;
|
|
longDescription = ''
|
|
PCG is a family of simple fast space-efficient statistically good
|
|
algorithms for random number generation. Unlike many general-purpose RNGs,
|
|
they are also hard to predict.
|
|
'';
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ lib.maintainers.linus ];
|
|
broken = stdenv.hostPlatform.isi686; # https://github.com/imneme/pcg-c/issues/11
|
|
};
|
|
}
|