nixpkgs/pkgs/tools/misc/ncdu/default.nix
Tarcísio Genaro Rodrigues 0af69c7c52 ncdu: pie for darwin builds
Fix broken darwin compilation. The issue started after the 2.2.2 ->
2.3 update (0b6d39590921).

`ncdu` defaults pie to false while `zig` requires it to be true for
darwin.
2023-08-17 08:05:53 -03:00

44 lines
885 B
Nix

{ lib
, stdenv
, fetchurl
, ncurses
, zig_0_11
, installShellFiles
, pie ? stdenv.isDarwin
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ncdu";
version = "2.3";
src = fetchurl {
url = "https://dev.yorhel.nl/download/ncdu-${finalAttrs.version}.tar.gz";
hash = "sha256-u84dHHDxJHZxvk6iE12MUs0ppwivXtYs7Np9xqgACjw=";
};
nativeBuildInputs = [
zig_0_11.hook
installShellFiles
];
buildInputs = [
ncurses
];
zigBuildFlags = lib.optional pie "-Dpie=true";
postInstall = ''
installManPage ncdu.1
'';
meta = {
homepage = "https://dev.yorhel.nl/ncdu";
description = "Disk usage analyzer with an ncurses interface";
changelog = "https://dev.yorhel.nl/ncdu/changes2";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pSub rodrgz ];
inherit (zig_0_11.meta) platforms;
mainProgram = "ncdu";
};
})