2016-08-13 01:05:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, perl }:
|
2014-10-17 12:50:36 +01:00
|
|
|
|
2019-06-01 13:25:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "urxvt-tabbedex";
|
2019-06-01 13:25:58 +01:00
|
|
|
version = "19.21";
|
2014-10-17 12:50:36 +01:00
|
|
|
|
2016-08-13 01:05:48 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mina86";
|
|
|
|
repo = "urxvt-tabbedex";
|
2019-06-01 13:25:58 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "06msd156h6r8ss7qg66sjz5jz8613qfq2yvp0pc24i6mxzj8vl77";
|
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)";
|
2020-04-01 02:11:51 +01:00
|
|
|
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
|
|
|
}
|