nixpkgs/pkgs/tools/misc/ncdu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
974 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, ncurses
2024-04-27 11:05:08 +00:00
, zig
, installShellFiles
2023-09-18 19:58:14 +00:00
, testers
, pie ? stdenv.isDarwin
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ncdu";
2024-04-27 11:05:08 +00:00
version = "2.4";
src = fetchurl {
url = "https://dev.yorhel.nl/download/ncdu-${finalAttrs.version}.tar.gz";
2024-04-27 11:05:08 +00:00
hash = "sha256-Sj0AAjCc9qfOp5GTjayb7N7OTVKdDW3I2RtztOaFVQk=";
};
2022-07-21 04:45:49 +00:00
nativeBuildInputs = [
2024-04-27 11:05:08 +00:00
zig.hook
installShellFiles
2022-07-21 04:45:49 +00:00
];
buildInputs = [
ncurses
];
2022-10-21 09:24:12 +00:00
zigBuildFlags = lib.optional pie "-Dpie=true";
postInstall = ''
installManPage ncdu.1
'';
2023-09-18 19:58:14 +00:00
passthru.tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
};
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 ];
2024-04-27 11:05:08 +00:00
inherit (zig.meta) platforms;
mainProgram = "ncdu";
};
})