nixpkgs/pkgs/tools/system/tree/default.nix

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

53 lines
1.6 KiB
Nix
Raw Normal View History

2022-06-01 23:31:21 +00:00
{ lib, stdenv, fetchFromGitLab }:
let
# These settings are found in the Makefile, but there seems to be no
2023-06-15 15:48:31 +00:00
# way to select one or the other setting other than editing the file
# manually, so we have to duplicate the know how here.
2021-11-12 16:30:38 +00:00
systemFlags = lib.optionalString stdenv.isDarwin ''
2022-06-01 23:31:21 +00:00
CFLAGS="-O2 -Wall -fomit-frame-pointer -no-cpp-precomp"
2021-11-12 16:30:38 +00:00
LDFLAGS=
'' + lib.optionalString stdenv.isCygwin ''
2022-06-01 23:31:21 +00:00
CFLAGS="-O2 -Wall -fomit-frame-pointer"
2021-11-12 16:30:38 +00:00
LDFLAGS=-s
TREE_DEST=tree.exe
'' + lib.optionalString (stdenv.isFreeBSD || stdenv.isOpenBSD) ''
CFLAGS="-O2 -Wall -fomit-frame-pointer"
LDFLAGS=-s
''; # use linux flags by default
in
2021-07-14 15:10:11 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "tree";
2023-06-15 15:48:31 +00:00
version = "2.1.1";
2022-06-01 23:31:21 +00:00
src = fetchFromGitLab {
owner = "OldManProgrammer";
repo = "unix-tree";
rev = version;
2023-06-15 15:48:31 +00:00
sha256 = "sha256-aPz1ROUeAKDmMjEtAaL2AguF54/CbIYWpL4Qovv2ftQ=";
};
2021-11-12 16:30:38 +00:00
preConfigure = ''
2022-06-01 23:31:21 +00:00
makeFlagsArray+=(${systemFlags})
'';
2021-11-12 16:30:38 +00:00
makeFlags = [
2022-06-01 23:31:21 +00:00
"CC=${stdenv.cc.targetPrefix}cc"
"PREFIX=${placeholder "out"}"
2021-11-12 16:30:38 +00:00
];
meta = with lib; {
2023-12-10 09:07:56 +00:00
homepage = "https://oldmanprogrammer.net/source.php?dir=projects/tree";
description = "Command to produce a depth indented directory listing";
2021-11-12 16:30:38 +00:00
license = licenses.gpl2;
longDescription = ''
Tree is a recursive directory listing command that produces a
depth indented listing of files, which is colorized ala dircolors if
the LS_COLORS environment variable is set and output is to tty.
'';
2021-11-12 16:30:38 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ nickcao ];
2023-10-06 03:00:06 +00:00
mainProgram = "tree";
};
}