about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2024-06-12 14:13:35 +0300
committerEmery Hemingway <ehmry@posteo.net>2024-06-18 05:38:22 +0000
commit6c80237e35b92d7ade0edf5bffa53b1663d8b7ed (patch)
tree4ccdfaf8381b0c8380e371f8b43dbb17e6ab4fa6
parent970fa0b6131d6f812ec8485e4d2fae40f3ef885d (diff)
f2fs-tools: build with lz4 lzo
This is to enable compression in sload.f2fs.
-rw-r--r--pkgs/by-name/f2/f2fs-tools/package.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/by-name/f2/f2fs-tools/package.nix b/pkgs/by-name/f2/f2fs-tools/package.nix
index adb97a3aa222d..0c91e41da45fe 100644
--- a/pkgs/by-name/f2/f2fs-tools/package.nix
+++ b/pkgs/by-name/f2/f2fs-tools/package.nix
@@ -7,6 +7,8 @@
   libselinux,
   libuuid,
   pkg-config,
+  lz4,
+  lzo,
 }:
 
 stdenv.mkDerivation rec {
@@ -25,6 +27,8 @@ stdenv.mkDerivation rec {
   buildInputs = [
     libselinux
     libuuid
+    lz4
+    lzo
   ];
 
   patches = [