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

52 lines
1.5 KiB
Nix
Raw Normal View History

2022-06-02 02:31:21 +03:00
{ lib, stdenv, fetchFromGitLab }:
let
# These settings are found in the Makefile, but there seems to be no
2023-06-15 18:48:31 +03: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 19:30:38 +03:00
systemFlags = lib.optionalString stdenv.isDarwin ''
2022-06-02 02:31:21 +03:00
CFLAGS="-O2 -Wall -fomit-frame-pointer -no-cpp-precomp"
2021-11-12 19:30:38 +03:00
LDFLAGS=
'' + lib.optionalString stdenv.isCygwin ''
2022-06-02 02:31:21 +03:00
CFLAGS="-O2 -Wall -fomit-frame-pointer"
2021-11-12 19:30:38 +03: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 18:10:11 +03:00
stdenv.mkDerivation rec {
2019-08-14 00:52:01 +03:00
pname = "tree";
2023-06-15 18:48:31 +03:00
version = "2.1.1";
2022-06-02 02:31:21 +03:00
src = fetchFromGitLab {
owner = "OldManProgrammer";
repo = "unix-tree";
rev = version;
2023-06-15 18:48:31 +03:00
sha256 = "sha256-aPz1ROUeAKDmMjEtAaL2AguF54/CbIYWpL4Qovv2ftQ=";
};
2021-11-12 19:30:38 +03:00
preConfigure = ''
2022-06-02 02:31:21 +03:00
makeFlagsArray+=(${systemFlags})
'';
2021-11-12 19:30:38 +03:00
makeFlags = [
2022-06-02 02:31:21 +03:00
"CC=${stdenv.cc.targetPrefix}cc"
"PREFIX=${placeholder "out"}"
2021-11-12 19:30:38 +03:00
];
meta = with lib; {
homepage = "http://mama.indstate.edu/users/ice/tree/";
description = "Command to produce a depth indented directory listing";
2021-11-12 19:30:38 +03: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 19:30:38 +03:00
platforms = platforms.all;
2023-07-23 20:30:22 +03:00
maintainers = with maintainers; [ ];
};
}