Added FBTerm - framebuffer terminal emulator
svn path=/nixpkgs/trunk/; revision=13596
This commit is contained in:
parent
bcb25659a1
commit
e66080438b
26
pkgs/os-specific/linux/fbterm/default.nix
Normal file
26
pkgs/os-specific/linux/fbterm/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
@ -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; [
|
||||
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user