Skip to content

Commit

Permalink
SpaceFM: (optionally) remove dependency on ifuse due to broken dep
Browse files Browse the repository at this point in the history
CVEs in libplist prevent ifuse from building (see 30cea5f)
  • Loading branch information
obadz committed Feb 26, 2017
1 parent 8fcd1a0 commit daaf817
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/applications/misc/spacefm/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ pkgs, fetchFromGitHub, stdenv, gtk3, udev, desktop_file_utils
, shared_mime_info, intltool, pkgconfig, wrapGAppsHook, ffmpegthumbnailer
, jmtpfs, ifuse, lsof, udisks, hicolor_icon_theme, adwaita-icon-theme }:
, jmtpfs, ifuseSupport ? false, ifuse ? null, lsof, udisks, hicolor_icon_theme, adwaita-icon-theme }:

stdenv.mkDerivation rec {
name = "spacefm-${version}";
Expand Down Expand Up @@ -28,8 +28,10 @@ stdenv.mkDerivation rec {

buildInputs = [
gtk3 udev desktop_file_utils shared_mime_info intltool pkgconfig
wrapGAppsHook ffmpegthumbnailer jmtpfs ifuse lsof udisks
];
wrapGAppsHook ffmpegthumbnailer jmtpfs lsof udisks
] ++ (if ifuseSupport then [ ifuse ] else []);
# Introduced because ifuse doesn't build due to CVEs in libplist
# Revert when libplist builds again…

meta = with stdenv.lib; {
description = "A multi-panel tabbed file manager";
Expand Down

0 comments on commit daaf817

Please sign in to comment.