summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-02-25 21:36:21 -0500
committerGitHub <noreply@github.com>2020-02-25 21:36:21 -0500
commit3a0da440a354c36f7bbca6d7399b0737cd675637 (patch)
tree1afc5024dddb02805f996d84b4759707834921c1 /pkgs/tools/system
parent0d59920d8d11edac23a83748c018cef47ffa4d87 (diff)
parenta47195b5168633507cc4cca00633d11f307613ea (diff)
downloadnixpkgs-3a0da440a354c36f7bbca6d7399b0737cd675637.tar
nixpkgs-3a0da440a354c36f7bbca6d7399b0737cd675637.tar.gz
nixpkgs-3a0da440a354c36f7bbca6d7399b0737cd675637.tar.bz2
nixpkgs-3a0da440a354c36f7bbca6d7399b0737cd675637.tar.lz
nixpkgs-3a0da440a354c36f7bbca6d7399b0737cd675637.tar.xz
nixpkgs-3a0da440a354c36f7bbca6d7399b0737cd675637.tar.zst
nixpkgs-3a0da440a354c36f7bbca6d7399b0737cd675637.zip
Merge pull request #81056 from r-ryantm/auto-update/bfs
bfs: 1.5.2 -> 1.6
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/bfs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/system/bfs/default.nix b/pkgs/tools/system/bfs/default.nix
index 1387a6c6ed1..50146f0aad3 100644
--- a/pkgs/tools/system/bfs/default.nix
+++ b/pkgs/tools/system/bfs/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "bfs";
-  version = "1.5.2";
+  version = "1.6";
 
   src = fetchFromGitHub {
     repo = "bfs";
     owner = "tavianator";
     rev = version;
-    sha256 = "04jgah6yvz3i2bwrv1ki2nmj1yinba7djbfq8n8ism4gffsza9dz";
+    sha256 = "0qrxd1vdz2crk7jf7cdda5bhm1f841hjvin7fn497wymwr5qyjah";
   };
 
   buildInputs = stdenv.lib.optionals stdenv.isLinux [ libcap acl ];
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
       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;
+    homepage = "https://github.com/tavianator/bfs";
     license = licenses.bsd0;
     platforms = platforms.unix;
     maintainers = with maintainers; [ yesbox ];