summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorEvils <evils.devils@protonmail.com>2022-11-12 04:05:29 +0100
committerEvils <evils.devils@protonmail.com>2022-11-12 04:48:45 +0100
commit2c2b953bf8302d5f3c6251e822a0e14a366e769c (patch)
treef021772a6453daec6fa8c77942edb42290034a5d /pkgs/tools
parent2741fd822e52e1b12bfa29b0629b027e0a3583f5 (diff)
downloadnixpkgs-2c2b953bf8302d5f3c6251e822a0e14a366e769c.tar
nixpkgs-2c2b953bf8302d5f3c6251e822a0e14a366e769c.tar.gz
nixpkgs-2c2b953bf8302d5f3c6251e822a0e14a366e769c.tar.bz2
nixpkgs-2c2b953bf8302d5f3c6251e822a0e14a366e769c.tar.lz
nixpkgs-2c2b953bf8302d5f3c6251e822a0e14a366e769c.tar.xz
nixpkgs-2c2b953bf8302d5f3c6251e822a0e14a366e769c.tar.zst
nixpkgs-2c2b953bf8302d5f3c6251e822a0e14a366e769c.zip
bees: 0.7 -> 0.8
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/filesystems/bees/default.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/pkgs/tools/filesystems/bees/default.nix b/pkgs/tools/filesystems/bees/default.nix
index 75b8feeccdb..5e9e1ca17ae 100644
--- a/pkgs/tools/filesystems/bees/default.nix
+++ b/pkgs/tools/filesystems/bees/default.nix
@@ -15,20 +15,16 @@ let
 
   bees = stdenv.mkDerivation rec {
     pname = "bees";
-    version = "0.7";
+    version = "0.8";
 
     src = fetchFromGitHub {
       owner = "Zygo";
       repo = "bees";
       rev = "v${version}";
-      sha256 = "sha256-hD6/pMRnQgPqL1M6QOuRka6ESJv9kjeKy+29nRMTY1o=";
+      sha256 = "sha256-xBejyi/W8DLQmcicTqEQb5c4uZKu7jsLGjmWmW74t88=";
     };
 
     buildInputs = [
-      # Works around build failure for flexible array members.
-      # Can be removed after 0.7.3 release where it was fixed upstream.
-      linuxHeaders_5_19
-
       btrfs-progs # for btrfs/ioctl.h
       util-linux # for uuid.h
     ];
@@ -61,10 +57,10 @@ let
     meta = with lib; {
       homepage = "https://github.com/Zygo/bees";
       description = "Block-oriented BTRFS deduplication service";
+      longDescription = "Best-Effort Extent-Same: bees finds not just identical files, but also identical extents within files that differ";
       license = licenses.gpl3;
       platforms = platforms.linux;
       maintainers = with maintainers; [ chaduffy ];
-      longDescription = "Best-Effort Extent-Same: bees finds not just identical files, but also identical extents within files that differ";
     };
   };