c0506b8029
* Libcaca support in MPlayer. * Hopefully fix X11 detection in MPlayer. svn path=/nixpkgs/trunk/; revision=3684
13 lines
288 B
Nix
13 lines
288 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libcaca-0.9";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://sam.zoy.org/libcaca/libcaca-0.9.tar.bz2;
|
|
md5 = "c7d5c46206091a9203fcb214abb25e4a";
|
|
};
|
|
inherit ncurses;
|
|
propagatedBuildInputs = [ncurses];
|
|
}
|