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
16
bees = stdenv.mkDerivation rec {
17
pname = "bees";
18
-
version = "0.7";
19
20
src = fetchFromGitHub {
21
owner = "Zygo";
22
repo = "bees";
23
rev = "v${version}";
24
-
sha256 = "sha256-hD6/pMRnQgPqL1M6QOuRka6ESJv9kjeKy+29nRMTY1o=";
25
};
26
27
buildInputs = [
28
-
# Works around build failure for flexible array members.
29
-
# Can be removed after 0.7.3 release where it was fixed upstream.
30
-
linuxHeaders_5_19
31
-
32
btrfs-progs # for btrfs/ioctl.h
33
util-linux # for uuid.h
34
];
···
61
meta = with lib; {
62
homepage = "https://github.com/Zygo/bees";
63
description = "Block-oriented BTRFS deduplication service";
0
64
license = licenses.gpl3;
65
platforms = platforms.linux;
66
maintainers = with maintainers; [ chaduffy ];
67
-
longDescription = "Best-Effort Extent-Same: bees finds not just identical files, but also identical extents within files that differ";
68
};
69
};
70
···
15
16
bees = stdenv.mkDerivation rec {
17
pname = "bees";
18
+
version = "0.8";
19
20
src = fetchFromGitHub {
21
owner = "Zygo";
22
repo = "bees";
23
rev = "v${version}";
24
+
sha256 = "sha256-xBejyi/W8DLQmcicTqEQb5c4uZKu7jsLGjmWmW74t88=";
25
};
26
27
buildInputs = [
0
0
0
0
28
btrfs-progs # for btrfs/ioctl.h
29
util-linux # for uuid.h
30
];
···
57
meta = with lib; {
58
homepage = "https://github.com/Zygo/bees";
59
description = "Block-oriented BTRFS deduplication service";
60
+
longDescription = "Best-Effort Extent-Same: bees finds not just identical files, but also identical extents within files that differ";
61
license = licenses.gpl3;
62
platforms = platforms.linux;
63
maintainers = with maintainers; [ chaduffy ];
0
64
};
65
};
66