mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
bb: init at 1.3rc1
This commit is contained in:
parent
3920a44628
commit
14bbec1801
24
pkgs/applications/misc/bb/default.nix
Normal file
24
pkgs/applications/misc/bb/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user