Added FBTerm - framebuffer terminal emulator

svn path=/nixpkgs/trunk/; revision=13596
This commit is contained in:
Michael Raskin 2008-12-08 12:44:42 +00:00
parent bcb25659a1
commit e66080438b
3 changed files with 31 additions and 2 deletions

View file

@ -0,0 +1,26 @@
a :
let
fetchurl = a.fetchurl;
version = a.lib.getAttr ["version"] "1.2" a;
buildInputs = with a; [
gpm fontconfig freetype pkgconfig
];
in
rec {
src = fetchurl {
url = "http://fbterm.googlecode.com/files/fbterm-${version}.tar.gz";
sha256 = "0q4axmnpwlpjlpaj19iw7nyxkqsvwq767szdkzsgancq99afwqyd";
};
inherit buildInputs;
configureFlags = [];
/* doConfigure should be removed if not needed */
phaseNames = ["doConfigure" "doMakeInstall"];
name = "fbterm-" + version;
meta = {
description = "Framebuffer terminal emulator";
};
}

View file

@ -5926,6 +5926,10 @@ let
inherit fetchurl stdenv gettext;
};
fbterm = builderDefsPackage (import ../os-specific/linux/fbterm) {
inherit fontconfig gpm freetype pkgconfig;
};
fuse = import ../os-specific/linux/fuse {
inherit fetchurl stdenv utillinux;
};

View file

@ -1,9 +1,8 @@
a :
let
lib = a.lib;
fetchurl = a.fetchurl;
version = lib.getAttr ["version"] "" a;
version = a.lib.getAttr ["version"] "" a;
buildInputs = with a; [
];