summary refs log blame commit diff
path: root/pkgs/development/libraries/aalib/default.nix
blob: fa21a9570c7a8768cb0e44ca71b53c1c96a1f59b (plain) (tree)
1
2
3
4
5
6
7
8
9
                                      

                     
                        
 
                  

                                                                    
    





                                                       


                                                           



                                               
 
{stdenv, fetchurl, ncurses, automake}:

stdenv.mkDerivation {
  name = "aalib-1.4rc5";

  src = fetchurl {
    url = mirror://sourceforge/aa-project/aalib-1.4rc5.tar.gz;
    sha256 = "1vkh19gb76agvh4h87ysbrgy82hrw88lnsvhynjf4vng629dmpgv";
  };

  # The fuloong2f is not supported by aalib still
  preConfigure = ''
    cp ${automake}/share/automake*/config.{sub,guess} .
  '';

  buildInputs = [ ncurses ];

  configureFlags = "--without-x --with-ncurses=${ncurses}";

  meta = {
    description = "ASCII art graphics library";
  };
}