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

                     
                        

                         

                                                                    
    





                                                       
                          
                  



                                               
 
{stdenv, fetchurl, ncurses, automake}:

stdenv.mkDerivation {
  name = "aalib-1.4rc5";
  builder = ./builder.sh;
  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];
  inherit ncurses;

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