biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / ripmime / default.nix
blob70ff2cbe7305bade2e7b25f7da88f1805a381be0
1 { lib, stdenv, fetchurl, libiconv }:
3 stdenv.mkDerivation rec {
4   pname = "ripmime";
5   version = "1.4.0.10";
6   src = fetchurl {
7     url = "https://pldaniels.com/${pname}/${pname}-${version}.tar.gz";
8     sha256 = "0sj06ibmlzy34n8v0mnlq2gwidy7n2aqcwgjh0xssz3vi941aqc9";
9   };
11   buildInputs = [ libiconv ];
12   preInstall = ''
13     sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" -e "s@man/man1@share/&@"
14     mkdir -p "$out/bin" "$out/share/man/man1"
15   '';
17   env.NIX_CFLAGS_COMPILE = " -Wno-error ";
19   meta = with lib; {
20     description = "Attachment extractor for MIME messages";
21     maintainers = with maintainers; [ raskin ];
22     homepage = "https://pldaniels.com/ripmime/";
23     platforms = platforms.all;
24     mainProgram = "ripmime";
25   };
27   passthru = {
28     updateInfo = {
29       downloadPage = "https://pldaniels.com/ripmime/";
30     };
31   };