mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +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" ```
47 lines
999 B
Nix
47 lines
999 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoreconfHook
|
|
|
|
# for passthru.tests
|
|
, git
|
|
, libguestfs
|
|
, nixosTests
|
|
, rpm
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cpio";
|
|
version = "2.15";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/cpio/cpio-${version}.tar.bz2";
|
|
hash = "sha256-k3YQuXwymh7JJoVT+3gAN7z/8Nz/6XJevE/ZwaqQdds=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
separateDebugInfo = true;
|
|
|
|
preConfigure = lib.optionalString stdenv.hostPlatform.isCygwin ''
|
|
sed -i gnu/fpending.h -e 's,include <stdio_ext.h>,,'
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.tests = {
|
|
inherit libguestfs rpm;
|
|
git = git.tests.withInstallCheck;
|
|
initrd = nixosTests.systemd-initrd-simple;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.gnu.org/software/cpio/";
|
|
description = "Program to create or extract from cpio archives";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.all;
|
|
priority = 6; # resolves collision with gnutar's "libexec/rmt"
|
|
mainProgram = "cpio";
|
|
};
|
|
}
|