about summary refs log tree commit diff
path: root/pkgs/applications/misc/mrxvt/default.nix
blob: f58fff56bc084cea265c22a0fab97727864e31c9 (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
27
28
29
args: with args.lib; with args;

let
  co = chooseOptionsByFlags {
    inherit args;
    flagDescr = {
      mandatory = { buildInputs = [ "libX11" ]; cfgOption = "--with-x"; };
      # many options to add here ... :)
      # many of them can be set by configuration file I think..
    };
};

in stdenv.mkDerivation {

  inherit (co) buildInputs configureFlags;

  src = fetchurl {
    url = mirror://sourceforge/materm/mrxvt-0.5.3.tar.gz;
    sha256 = "04flnn58hp4qvvk6jzyipsj13v1qyrjabgbw5laz5cqxvxzpncp2";
  };

  name = "mrxvt-0.5.3";

  meta = { 
    description = "multitabbed lightweight terminal emulator basd on rxvt supporting transparency, backgroundimages, freetype fonts,..";
    homepage = http://sourceforge.net/projects/materm;
    license = "GPL";
  };
}