1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

diffoscope: enable on darwin

This commit is contained in:
Daiderd Jordan 2020-01-14 10:56:52 +01:00
parent ae0239c28b
commit ef09cebc96
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -35,11 +35,14 @@ python3Packages.buildPythonApplication rec {
#
# Still missing these tools: abootimg docx2txt dumpxsb enjarify js-beautify lipo oggDump otool procyon-decompiler Rscript wasm2wat zipnode
# Also these libraries: python3-guestfs
pythonPath = with python3Packages; [ debian libarchive-c python_magic tlsh rpm pyxattr ] ++ [
acl binutils-unwrapped bzip2 cdrkit colordiff coreutils cpio db diffutils
pythonPath = [
binutils-unwrapped bzip2 colordiff coreutils cpio db diffutils
dtc e2fsprogs file findutils fontforge-fonttools gettext gnutar gzip
libarchive libcaca lz4 pgpdump progressbar33 sng sqlite squashfsTools unzip xxd xz
] ++ lib.optionals enableBloat [
libarchive libcaca lz4 pgpdump sng sqlite squashfsTools unzip xxd xz
]
++ (with python3Packages; [ debian libarchive-c python_magic tlsh rpm progressbar33 ])
++ lib.optionals stdenv.isLinux [ python3Packages.pyxattr acl cdrkit ]
++ lib.optionals enableBloat [
apktool cbfstool colord fpc ghc ghostscriptX giflib gnupg gnumeric imagemagick
llvm jdk mono openssh pdftk poppler_utils tcpdump unoconv
python3Packages.guestfs
@ -69,6 +72,6 @@ python3Packages.buildPythonApplication rec {
homepage = https://wiki.debian.org/ReproducibleBuilds;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dezgeg ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}