summary refs log tree commit diff
path: root/pkgs/os-specific/linux/fbterm/default.nix
blob: 189272b7d9b3791fc71329f472d7f618a1651df1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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";
  };
}