tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ripemime: fix darwin build
Ben Siraphob
5 years ago
30350ec0
8bd1dd33
+3
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
ripmime
default.nix
+3
-2
pkgs/tools/networking/ripmime/default.nix
···
1
1
-
{ lib, stdenv, fetchurl }:
1
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
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
22
-
platforms = platforms.linux;
23
23
+
platforms = platforms.all;
23
24
};
24
25
25
26
passthru = {