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
817 B
Nix
37 lines
817 B
Nix
{ lib
|
|
, stdenvNoCC
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, Foundation
|
|
, DiskArbitration
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "owofetch";
|
|
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "netthier";
|
|
repo = "owofetch-rs";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-I8mzOUvm72KLLBumpgn9gNyx9FKvUrB4ze1iM1+OA18=";
|
|
};
|
|
|
|
cargoHash = "sha256-rfN4QERs1H1G7ZZim//78vlxbYfU4Cx7SYYUz/QLKeU=";
|
|
|
|
buildInputs = lib.optionals stdenvNoCC.hostPlatform.isDarwin [
|
|
Foundation
|
|
DiskArbitration
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Alternative to *fetch, uwuifies all stats";
|
|
homepage = "https://github.com/netthier/owofetch-rs";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.x86_64;
|
|
maintainers = with maintainers; [ nullishamy ];
|
|
mainProgram = "owofetch";
|
|
};
|
|
}
|