about summary refs log tree commit diff
path: root/pkgs/applications/search/grepm
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-03-21 12:08:04 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-03-21 12:08:04 -0300
commita95583e7fd157ea9ef51f32a2e437be301ca751e (patch)
tree33ac4bed59ab4de14e2197e2706b92717630b996 /pkgs/applications/search/grepm
parentc0c321cf4877f324f707ce794ead644f4fc52eb6 (diff)
grepm: init at 0.6
Diffstat (limited to 'pkgs/applications/search/grepm')
-rw-r--r--pkgs/applications/search/grepm/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/applications/search/grepm/default.nix b/pkgs/applications/search/grepm/default.nix
new file mode 100644
index 0000000000000..99c149b79d9da
--- /dev/null
+++ b/pkgs/applications/search/grepm/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, perlPackages, mutt }:
+
+stdenv.mkDerivation rec {
+  name = "grepm-${version}";
+  version = "0.6";
+
+  src = fetchurl {
+    url = "http://www.barsnick.net/sw/grepm";
+    sha256 = "0ppprhfw06779hz1b10qvq62gsw73shccsav982dyi6xmqb6jqji";
+  };
+
+  phases = [ "installPhase" ];
+
+  buildInputs = [ perlPackages.grepmail mutt ];
+
+  installPhase = ''
+    mkdir -p $out/bin
+    cp -a $src $out/bin/grepm
+    chmod +x $out/bin/grepm
+    sed -i \
+      -e "s:^grepmail:${perlPackages.grepmail}/bin/grepmail:" \
+      -e "s:^\( *\)mutt:\1${mutt}/bin/mutt:" \
+      $out/bin/grepm
+  '';
+  
+  meta = with stdenv.lib; {
+    description = "Wrapper for grepmail utilizing mutt";
+    homepage = http://www.barsnick.net/sw/grepm.html;
+    license = licenses.free;
+    platforms = platforms.unix;
+    maintainers = [ maintainers.romildo ];
+  };
+}