summary refs log tree commit diff
path: root/pkgs/tools/networking/ripmime
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2010-10-18 09:43:17 +0000
committerMichael Raskin <7c6f434c@mail.ru>2010-10-18 09:43:17 +0000
commitbc73cd0f7e6451d2e9893517d89d9325a8e0c163 (patch)
treed8ec07cf896064a51cde7aac8813436f74a83496 /pkgs/tools/networking/ripmime
parentb2e9e9757c7f6c04ec74b5ea9597b4a96931e3a8 (diff)
Add ripmime - MIME attachment extractor tool
svn path=/nixpkgs/trunk/; revision=24337
Diffstat (limited to 'pkgs/tools/networking/ripmime')
-rw-r--r--pkgs/tools/networking/ripmime/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/pkgs/tools/networking/ripmime/default.nix b/pkgs/tools/networking/ripmime/default.nix
new file mode 100644
index 0000000000000..895b2c4be4fd3
--- /dev/null
+++ b/pkgs/tools/networking/ripmime/default.nix
@@ -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
+