summary refs log blame commit diff
path: root/pkgs/applications/networking/tmpmail/default.nix
blob: 535f5ce6d9d559b5504eddcf3e04e0ce557d3b13 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                                    
                    



                          
                        
                                                                   


















                                                                                    
                                      

    
{ lib, fetchFromGitHub, stdenvNoCC, w3m, curl, jq, makeWrapper, installShellFiles }:

stdenvNoCC.mkDerivation rec {
  pname = "tmpmail";
  version = "1.1.9";

   src = fetchFromGitHub {
    owner = "sdushantha";
    repo = "tmpmail";
    rev = "v${version}";
    sha256 = "sha256-sWcsmBUHSfo7sICXyhNhbfRFSHumObnWc7stWxcwVTg=";
  };

  dontConfigure = true;

  dontBuild = true;

  nativeBuildInputs = [ makeWrapper installShellFiles ];

  installPhase = ''
    mkdir -p $out/bin
    install -Dm755 -t $out/bin tmpmail
    installManPage tmpmail.1
    wrapProgram $out/bin/tmpmail --prefix PATH : ${lib.makeBinPath [ w3m curl jq ]}
  '';

   meta = with lib; {
    homepage = "https://github.com/sdushantha/tmpmail";
    description = "A temporary email right from your terminal written in POSIX sh ";
    license = licenses.mit;
    maintainers = [ maintainers.lom ];
  };
}