tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
bees: 0.7 -> 0.8
Evils
3 years ago
2c2b953b
2741fd82
+3
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
filesystems
bees
default.nix
+3
-7
pkgs/tools/filesystems/bees/default.nix
···
15
15
16
16
bees = stdenv.mkDerivation rec {
17
17
pname = "bees";
18
18
-
version = "0.7";
18
18
+
version = "0.8";
19
19
20
20
src = fetchFromGitHub {
21
21
owner = "Zygo";
22
22
repo = "bees";
23
23
rev = "v${version}";
24
24
-
sha256 = "sha256-hD6/pMRnQgPqL1M6QOuRka6ESJv9kjeKy+29nRMTY1o=";
24
24
+
sha256 = "sha256-xBejyi/W8DLQmcicTqEQb5c4uZKu7jsLGjmWmW74t88=";
25
25
};
26
26
27
27
buildInputs = [
28
28
-
# Works around build failure for flexible array members.
29
29
-
# Can be removed after 0.7.3 release where it was fixed upstream.
30
30
-
linuxHeaders_5_19
31
31
-
32
28
btrfs-progs # for btrfs/ioctl.h
33
29
util-linux # for uuid.h
34
30
];
···
61
57
meta = with lib; {
62
58
homepage = "https://github.com/Zygo/bees";
63
59
description = "Block-oriented BTRFS deduplication service";
60
60
+
longDescription = "Best-Effort Extent-Same: bees finds not just identical files, but also identical extents within files that differ";
64
61
license = licenses.gpl3;
65
62
platforms = platforms.linux;
66
63
maintainers = with maintainers; [ chaduffy ];
67
67
-
longDescription = "Best-Effort Extent-Same: bees finds not just identical files, but also identical extents within files that differ";
68
64
};
69
65
};
70
66