2007-09-04 22:06:18 +02:00
|
|
|
args: with args.lib; with args;
|
2007-09-11 13:15:37 +02:00
|
|
|
|
2007-09-04 22:06:18 +02:00
|
|
|
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..
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
in stdenv.mkDerivation {
|
2007-09-04 22:06:18 +02:00
|
|
|
|
|
|
|
inherit (co) buildInputs configureFlags;
|
|
|
|
|
2008-01-30 18:20:48 +01:00
|
|
|
src = fetchurl {
|
2007-09-11 13:15:37 +02:00
|
|
|
url = mirror://sourceforge/materm/mrxvt-0.5.3.tar.gz;
|
2007-09-04 22:06:18 +02:00
|
|
|
sha256 = "04flnn58hp4qvvk6jzyipsj13v1qyrjabgbw5laz5cqxvxzpncp2";
|
|
|
|
};
|
|
|
|
|
|
|
|
name = "mrxvt-0.5.3";
|
|
|
|
|
|
|
|
meta = {
|
2007-09-11 13:15:37 +02:00
|
|
|
description = "multitabbed lightweight terminal emulator basd on rxvt supporting transparency, backgroundimages, freetype fonts,..";
|
|
|
|
homepage = http://sourceforge.net/projects/materm;
|
|
|
|
license = "GPL";
|
|
|
|
};
|
2007-09-04 22:06:18 +02:00
|
|
|
}
|