2016-08-13 01:05:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, perl }:
|
2014-10-17 12:50:36 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-08-13 01:05:48 +01:00
|
|
|
name = "urxvt-tabbedex-2016-08-09";
|
2014-10-17 12:50:36 +01:00
|
|
|
|
2016-08-13 01:05:48 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mina86";
|
|
|
|
repo = "urxvt-tabbedex";
|
|
|
|
rev = "ac220eb3984e151ba14dce08f446bc7bc8ca29a2";
|
|
|
|
sha256 = "1b5mff5137jb5ysklsmfp5ql3m4g1z3bdhk0nwhz2hgwz40ap6k8";
|
2014-10-17 12:50:36 +01:00
|
|
|
};
|
|
|
|
|
2016-08-13 01:05:48 +01:00
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2014-10-17 12:50:36 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tabbed plugin for rxvt-unicode with many enhancements (mina86's fork)";
|
|
|
|
homepage = "https://github.com/mina86/urxvt-tabbedex";
|
2015-05-14 18:09:10 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2014-10-17 12:50:36 +01:00
|
|
|
};
|
2015-05-14 18:09:10 +01:00
|
|
|
}
|