lol

ripemime: fix darwin build

+3 -2
+3 -2
pkgs/tools/networking/ripmime/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib, stdenv, fetchurl, libiconv }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ripmime"; ··· 8 8 sha256 = "0sj06ibmlzy34n8v0mnlq2gwidy7n2aqcwgjh0xssz3vi941aqc9"; 9 9 }; 10 10 11 + buildInputs = [ libiconv ]; 11 12 preInstall = '' 12 13 sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" -e "s@man/man1@share/&@" 13 14 mkdir -p "$out/bin" "$out/share/man/man1" ··· 19 20 description = "Attachment extractor for MIME messages"; 20 21 maintainers = with maintainers; [ raskin ]; 21 22 homepage = "http://www.pldaniels.com/ripmime/"; 22 - platforms = platforms.linux; 23 + platforms = platforms.all; 23 24 }; 24 25 25 26 passthru = {