diff --git a/pkgs/applications/search/grepm/default.nix b/pkgs/applications/search/grepm/default.nix new file mode 100644 index 00000000000..99c149b79d9 --- /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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9729e2945d3..f21b3086610 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12318,6 +12318,8 @@ let grass = callPackage ../applications/gis/grass { }; + grepm = callPackage ../applications/search/grepm { }; + grip = callPackage ../applications/misc/grip { inherit (gnome) libgnome libgnomeui vte; };