bb: init at 1.3rc1

This commit is contained in:
rnhmjoj 2017-10-16 11:08:06 +02:00
parent 3920a44628
commit 14bbec1801
No known key found for this signature in database
GPG key ID: 91BE884FBA4B591A
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,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.unix;
};
}

View file

@ -13611,6 +13611,8 @@ with pkgs;
bazaarTools = callPackage ../applications/version-management/bazaar/tools.nix { };
bb = callPackage ../applications/misc/bb { };
beast = callPackage ../applications/audio/beast {
inherit (gnome2) libgnomecanvas libart_lgpl;
guile = guile_1_8;