Add ripmime - MIME attachment extractor tool

svn path=/nixpkgs/trunk/; revision=24337
This commit is contained in:
Michael Raskin 2010-10-18 09:43:17 +00:00
parent b2e9e9757c
commit bc73cd0f7e
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,51 @@
x@{builderDefsPackage
, ...}:
builderDefsPackage
(a :
let
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
[];
buildInputs = map (n: builtins.getAttr n x)
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
sourceInfo = rec {
baseName="ripmime";
version="1.4.0.9";
name="${baseName}-${version}";
url="http://www.pldaniels.com/${baseName}/${name}.tar.gz";
hash="15c48n8n8qavdigw5qycnwp6gys9dv3mgk18ylf5hd4491nnnrhz";
};
in
rec {
src = a.fetchurl {
url = sourceInfo.url;
sha256 = sourceInfo.hash;
};
inherit (sourceInfo) name version;
inherit buildInputs;
/* doConfigure should be removed if not needed */
phaseNames = ["fixTarget" "doMakeInstall"];
fixTarget = a.fullDepEntry (''
sed -i Makefile -e "s@LOCATION=.*@LOCATION=$out@"
ensureDir "$out/bin" "$out/man/man1"
'') ["doUnpack" "minInit" "defEnsureDir"];
meta = {
description = "Attachment extractor for MIME messages";
maintainers = with a.lib.maintainers;
[
raskin
];
platforms = with a.lib.platforms;
linux;
};
passthru = {
updateInfo = {
downloadPage = "http://www.pldaniels.com/ripmime/";
};
};
}) x

View File

@ -1096,6 +1096,8 @@ let
python=python; };
*/
ripmime = callPackage ../tools/networking/ripmime {};
rsnapshot = callPackage ../tools/backup/rsnapshot {
# For the `logger' command, we can use either `utillinux' or