nixpkgs/pkgs/tools/networking/ripmime/default.nix
Anthony Roussel e30f48be94
treewide: fix redirected and broken URLs
Using the script in maintainers/scripts/update-redirected-urls.sh
2023-11-11 10:49:01 +01:00

32 lines
816 B
Nix

{ lib, stdenv, fetchurl, libiconv }:
stdenv.mkDerivation rec {
pname = "ripmime";
version = "1.4.0.10";
src = fetchurl {
url = "https://pldaniels.com/${pname}/${pname}-${version}.tar.gz";
sha256 = "0sj06ibmlzy34n8v0mnlq2gwidy7n2aqcwgjh0xssz3vi941aqc9";
};
buildInputs = [ libiconv ];
preInstall = ''
sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@" -e "s@man/man1@share/&@"
mkdir -p "$out/bin" "$out/share/man/man1"
'';
env.NIX_CFLAGS_COMPILE = " -Wno-error ";
meta = with lib; {
description = "Attachment extractor for MIME messages";
maintainers = with maintainers; [ raskin ];
homepage = "https://pldaniels.com/ripmime/";
platforms = platforms.all;
};
passthru = {
updateInfo = {
downloadPage = "https://pldaniels.com/ripmime/";
};
};
}