summary refs log tree commit diff
path: root/pkgs/applications/misc/bb/default.nix
blob: 0689843af61207a5716098417daaf7584a82253d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, aalib, ncurses, xorg, libmikmod }:

stdenv.mkDerivation rec {
  name    = "bb-${version}";
  version = "1.3rc1";

  src = fetchurl {
    url    = "mirror://sourceforge/aa-project/bb/${version}/${name}.tar.gz";
    sha256 = "1i411glxh7g4pfg4gw826lpwngi89yrbmxac8jmnsfvrfb48hgbr";
  };

  buildInputs = [
    aalib ncurses libmikmod
    xorg.libXau xorg.libXdmcp xorg.libX11
  ];

  meta = with stdenv.lib; {
    homepage    = http://aa-project.sourceforge.net/bb;
    description = "AA-lib demo";
    license     = licenses.gpl2;
    maintainers = [ maintainers.rnhmjoj ];
    platforms   = platforms.linux;
  };
}