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


                              
                    
                     

                  
                                                          
                                                                    





                                                                   
                                                    
                                           
                                          

    
{ stdenv, fetchurl, ncurses }:

stdenv.mkDerivation rec {
  pname = "hexedit";
  version = "1.2.13";

  src = fetchurl {
    url = "http://rigaux.org/${pname}-${version}.src.tgz";
    sha256 = "1mwdp1ikk64cqmagnrrps5jkn3li3n47maiqh2qc1xbp1ains4ka";
  };

  buildInputs = [ ncurses ];

  meta = {
    description = "View and edit files in hexadecimal or in ASCII";
    homepage = http://prigaux.chez.com/hexedit.html;
    license = stdenv.lib.licenses.gpl2Plus;
    platforms = stdenv.lib.platforms.unix;
  };
}