mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
* AALib.
svn path=/nixpkgs/trunk/; revision=3682
This commit is contained in:
parent
975db72a72
commit
99780f00ce
6
pkgs/development/libraries/aalib/builder.sh
Normal file
6
pkgs/development/libraries/aalib/builder.sh
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
source $stdenv/setup
|
||||||
|
|
||||||
|
configureFlags="--without-x --with-ncurses=$ncurses"
|
||||||
|
export NIX_CFLAGS_COMPILE="-I$ncurses/include/ncurses $NIX_CFLAGS_COMPILE"
|
||||||
|
|
||||||
|
genericBuild
|
11
pkgs/development/libraries/aalib/default.nix
Normal file
11
pkgs/development/libraries/aalib/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{stdenv, fetchurl, ncurses}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "aalib-1.4rc4";
|
||||||
|
builder = ./builder.sh;
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://surfnet.dl.sourceforge.net/sourceforge/aa-project/aalib-1.4rc4.tar.gz;
|
||||||
|
md5 = "d5aa8e9eae07b7441298b5c30490f6a6";
|
||||||
|
};
|
||||||
|
inherit ncurses;
|
||||||
|
}
|
|
@ -717,6 +717,10 @@ rec {
|
||||||
inherit fetchurl stdenv zlib;
|
inherit fetchurl stdenv zlib;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
aalib = (import ../development/libraries/aalib) {
|
||||||
|
inherit fetchurl stdenv ncurses;
|
||||||
|
};
|
||||||
|
|
||||||
libsigsegv = (import ../development/libraries/libsigsegv) {
|
libsigsegv = (import ../development/libraries/libsigsegv) {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue