Add ripmime - MIME attachment extractor tool
svn path=/nixpkgs/trunk/; revision=24337
This commit is contained in:
parent
b2e9e9757c
commit
bc73cd0f7e
51
pkgs/tools/networking/ripmime/default.nix
Normal file
51
pkgs/tools/networking/ripmime/default.nix
Normal 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
|
||||||
|
|
@ -1096,6 +1096,8 @@ let
|
|||||||
python=python; };
|
python=python; };
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
ripmime = callPackage ../tools/networking/ripmime {};
|
||||||
|
|
||||||
rsnapshot = callPackage ../tools/backup/rsnapshot {
|
rsnapshot = callPackage ../tools/backup/rsnapshot {
|
||||||
|
|
||||||
# For the `logger' command, we can use either `utillinux' or
|
# For the `logger' command, we can use either `utillinux' or
|
||||||
|
Loading…
x
Reference in New Issue
Block a user