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




                         
                                                              

                                             





                                                       
                          
                  



                                               
 
{stdenv, fetchurl, ncurses, automake}:

stdenv.mkDerivation {
  name = "aalib-1.4rc4";
  builder = ./builder.sh;
  src = fetchurl {
    url = mirror://sourceforge/aa-project/aalib-1.4rc4.tar.gz;
    md5 = "d5aa8e9eae07b7441298b5c30490f6a6";
  };

  # 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";
  };
}