mrxvt terminal emulator supporting bg images added
svn path=/nixpkgs/trunk/; revision=9255
This commit is contained in:
parent
9d12c48767
commit
121ab831d7
29
pkgs/applications/misc/mrxvt/default.nix
Normal file
29
pkgs/applications/misc/mrxvt/default.nix
Normal file
@ -0,0 +1,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 args.stdenv.mkDerivation {
|
||||||
|
|
||||||
|
inherit (co) buildInputs configureFlags;
|
||||||
|
|
||||||
|
src = args.fetchurl {
|
||||||
|
url = http://downloads.sourceforge.net/materm/mrxvt-0.5.3.tar.gz?modtime=1187784483&big_mirror=0;
|
||||||
|
name="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";
|
||||||
|
};
|
||||||
|
}
|
@ -3344,6 +3344,12 @@ rec {
|
|||||||
# !!! should depend on MPlayer
|
# !!! should depend on MPlayer
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# commented out because it's using the new configuration style proposal which is unstable
|
||||||
|
#mrxvt = import ../applications/misc/mrxvt {
|
||||||
|
#inherit lib fetchurl stdenv;
|
||||||
|
#inherit (xlibs) libXaw xproto libXt libX11 libSM libICE;
|
||||||
|
#};
|
||||||
|
|
||||||
mutt = import ../applications/networking/mailreaders/mutt {
|
mutt = import ../applications/networking/mailreaders/mutt {
|
||||||
inherit fetchurl stdenv ncurses which openssl;
|
inherit fetchurl stdenv ncurses which openssl;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user