mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +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" ```
67 lines
1.5 KiB
Nix
67 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
testers,
|
|
gdu,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gdu";
|
|
version = "5.29.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dundee";
|
|
repo = "gdu";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-w48I7HU/pA53Pq6ZVwtby+YvFddVUjj8orL40Gifqoo=";
|
|
};
|
|
|
|
vendorHash = "sha256-aKhHC3sPRyi/l9BxeUgx+3TdYulb0cI9WxuPvbLoswg=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/dundee/gdu/v${lib.versions.major version}/build.Version=${version}"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace cmd/gdu/app/app_test.go \
|
|
--replace-fail "development" "${version}"
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage gdu.1
|
|
'';
|
|
|
|
doCheck = !stdenv.hostPlatform.isDarwin;
|
|
|
|
checkFlags = [
|
|
# https://github.com/dundee/gdu/issues/371
|
|
"-skip=TestStoredAnalyzer"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion { package = gdu; };
|
|
|
|
meta = with lib; {
|
|
description = "Disk usage analyzer with console interface";
|
|
longDescription = ''
|
|
Gdu is intended primarily for SSD disks where it can fully
|
|
utilize parallel processing. However HDDs work as well, but
|
|
the performance gain is not so huge.
|
|
'';
|
|
homepage = "https://github.com/dundee/gdu";
|
|
changelog = "https://github.com/dundee/gdu/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [
|
|
fab
|
|
zowoq
|
|
];
|
|
mainProgram = "gdu";
|
|
};
|
|
}
|