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




                                                                          
                                                          
                                                                                       


                                        
    
 
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "hello";
  version = "2.10";

  src = fetchurl {
    url = "mirror://gnu/hello/${pname}-${version}.tar.gz";
    sha256 = "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i";
  };

  doCheck = true;

  meta = with stdenv.lib; {
    description = "A program that produces a familiar, friendly greeting";
    longDescription = ''
      GNU Hello is a program that prints "Hello, world!" when you run it.
      It is fully customizable.
    '';
    homepage = https://www.gnu.org/software/hello/manual/;
    changelog = "https://git.savannah.gnu.org/cgit/hello.git/plain/NEWS?h=v${version}";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.eelco ];
    platforms = platforms.all;
  };
}