nixpkgs/pkgs/tools/system/bfs/default.nix
Jesper Geertsen Jonsson 0312fe4882 bfs: init at 1.2.1
2018-02-11 16:19:02 +01:00

39 lines
1.1 KiB
Nix

{ stdenv, fetchFromGitHub, bash }:
stdenv.mkDerivation rec {
name = "bfs-${version}";
version = "1.2.1";
src = fetchFromGitHub {
repo = "bfs";
owner = "tavianator";
rev = version;
sha256 = "1dgc31l5d20i0v78c51xga4lr78b5x8dz6yzsvbhlgs0abi0nynx";
};
# Disable fstype test, tries to read /etc/mtab
patches = [ ./tests.patch ];
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 ];
};
}