nixpkgs/pkgs/os-specific/linux/fbterm/stdenv.nix
2012-01-07 16:11:20 +00:00

36 lines
965 B
Nix

# Quick version to be able to cross-build fbterm meanwhile builderDefs cannot
# cross-build with an equivalent to the stdenvCross adapter.
{ stdenv, fetchurl, gpm, freetype, fontconfig, pkgconfig, ncurses }:
let
version="1.7";
name="fbterm-1.7";
hash="19qjb2zb4gwr1jlybmalaw3y3zybvc8vliwj85dfabmill1k1afh";
url="http://fbterm.googlecode.com/files/fbterm-${version}.tar.gz";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
inherit url;
sha256 = hash;
};
buildNativeInputs = [ ncurses ];
buildInputs = [ gpm freetype fontconfig pkgconfig ];
preConfigure = ''
sed -e '/ifdef SYS_signalfd/atypedef long long loff_t;' -i src/fbterm.cpp
sed -e '/install-exec-hook:/,/^[^\t]/{d}; /.NOEXPORT/iinstall-exec-hook:\
' -i src/Makefile.in
export HOME=$PWD;
export NIX_LDFLAGS="$NIX_LDFLAGS -lfreetype"
# This is only relevant cross-building
export NIX_CROSS_LDFLAGS="$NIX_CROSS_LDFLAGS -lfreetype"
'';
}