libisoburn: update expression

Including some extra dependencies from xorriso.
This commit is contained in:
Anderson Torres 2024-03-22 16:46:03 -03:00
parent 7ece0400fc
commit 5c1cc75ad3

View File

@ -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
];