2018-02-11 15:16:46 +00:00
|
|
|
{ stdenv, fetchFromGitHub, bash }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bfs-${version}";
|
2018-07-19 00:44:52 +00:00
|
|
|
version = "1.2.3";
|
2018-02-11 15:16:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "bfs";
|
|
|
|
owner = "tavianator";
|
|
|
|
rev = version;
|
2018-07-19 00:44:52 +00:00
|
|
|
sha256 = "01vcqanj2sifa5i51wvrkxh55d6hrq6iq7zmnhv4ls221dqmbyyn";
|
2018-02-11 15:16:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# Patch tests (both shebangs and usage in scripts)
|
|
|
|
for f in $(find -type f -name '*.sh'); do
|
|
|
|
substituteInPlace $f --replace "/bin/bash" "${bash}/bin/bash"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
buildFlags = [ "release" ]; # "release" enables compiler optimizations
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A breadth-first version of the UNIX find command";
|
|
|
|
longDescription = ''
|
|
|
|
bfs is a variant of the UNIX find command that operates breadth-first rather than
|
|
|
|
depth-first. It is otherwise intended to be compatible with many versions of find.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/tavianator/bfs;
|
|
|
|
license = licenses.bsd0;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ yesbox ];
|
|
|
|
};
|
|
|
|
}
|