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

                     
                        
  
                  


                                                                    
 







                                                                          
    
 
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "hello-2.3x26";
  
  src = fetchurl {
    url = mirror://gnu/hello/hello-2.3.tar.bz2;
    sha256 = "0c7vijq8y68bpr7g6dh1gny0bff8qq81vnp4ch8pjzvg56wb3js1";
  };

  meta = {
    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 = http://www.gnu.org/software/hello/manual/;
    license = "GPLv3+";
  };
}