about summary refs log tree commit diff
path: root/pkgs/by-name/li
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-03-22 16:46:03 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-03-24 23:26:26 -0300
commit5c1cc75ad3b2f528e8d2b17c168b1741f3889866 (patch)
tree7caba41ed8aa80b505198bf24f3d6ac562a0e973 /pkgs/by-name/li
parent7ece0400fc2e934237e6c6e8887bf995175a3e7d (diff)
libisoburn: update expression
Including some extra dependencies from xorriso.
Diffstat (limited to 'pkgs/by-name/li')
-rw-r--r--pkgs/by-name/li/libisoburn/package.nix18
1 files changed, 14 insertions, 4 deletions
diff --git a/pkgs/by-name/li/libisoburn/package.nix b/pkgs/by-name/li/libisoburn/package.nix
index 03db8b4d39f44..cc870b72a8a85 100644
--- a/pkgs/by-name/li/libisoburn/package.nix
+++ b/pkgs/by-name/li/libisoburn/package.nix
@@ -1,12 +1,16 @@
 { lib
-, stdenv
-, fetchFromGitea
 , acl
 , attr
 , autoreconfHook
+, bzip2
+, fetchFromGitea
 , libburn
+, libcdio
+, libiconv
 , libisofs
 , pkg-config
+, readline
+, stdenv
 , zlib
 }:
 
@@ -28,13 +32,19 @@ stdenv.mkDerivation (finalAttrs: {
   ];
 
   buildInputs = [
-    attr
+    bzip2
+    libcdio
+    libiconv
+    readline
     zlib
     libburn
     libisofs
+  ] ++ lib.optionals stdenv.isLinux [
+    acl
+    attr
   ];
 
-  propagatedBuildInputs = [
+  propagatedBuildInputs = lib.optionals stdenv.isLinux [
     acl
   ];