2022-06-02 00:31:21 +01:00
|
|
|
{ lib, stdenv, fetchFromGitLab }:
|
2011-07-24 10:57:06 +01:00
|
|
|
|
|
|
|
let
|
2011-07-24 20:15:03 +01:00
|
|
|
# These settings are found in the Makefile, but there seems to be no
|
|
|
|
# way to select one ore 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-02 00:31:21 +01: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-02 00:31:21 +01: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
|
2011-07-24 10:57:06 +01:00
|
|
|
in
|
2021-07-14 16:10:11 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "tree";
|
2022-10-01 04:02:52 +01:00
|
|
|
version = "2.0.4";
|
2011-07-24 10:57:06 +01:00
|
|
|
|
2022-06-02 00:31:21 +01:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "OldManProgrammer";
|
|
|
|
repo = "unix-tree";
|
|
|
|
rev = version;
|
2022-10-01 04:02:52 +01:00
|
|
|
sha256 = "sha256-2voXL31JHh09yBBLuHhYyZsUapiPVF/cgRmTU6wSXk4=";
|
2011-07-24 10:57:06 +01:00
|
|
|
};
|
|
|
|
|
2021-11-12 16:30:38 +00:00
|
|
|
preConfigure = ''
|
2022-06-02 00:31:21 +01:00
|
|
|
makeFlagsArray+=(${systemFlags})
|
2011-07-24 10:57:06 +01:00
|
|
|
'';
|
|
|
|
|
2021-11-12 16:30:38 +00:00
|
|
|
makeFlags = [
|
2022-06-02 00:31:21 +01:00
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
|
|
"PREFIX=${placeholder "out"}"
|
2021-11-12 16:30:38 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://mama.indstate.edu/users/ice/tree/";
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Command to produce a depth indented directory listing";
|
2021-11-12 16:30:38 +00:00
|
|
|
license = licenses.gpl2;
|
2011-07-24 10:57:06 +01:00
|
|
|
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; [ SuperSandro2000 ];
|
2011-07-24 10:57:06 +01:00
|
|
|
};
|
|
|
|
}
|