2016-08-13 01:05:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, perl }:
|
2014-10-17 12:50:36 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-11-23 14:55:17 +00:00
|
|
|
name = "urxvt-tabbedex-2016-08-17";
|
2014-10-17 12:50:36 +01:00
|
|
|
|
2016-08-13 01:05:48 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mina86";
|
|
|
|
repo = "urxvt-tabbedex";
|
2016-11-23 14:55:17 +00:00
|
|
|
rev = "089d0cb724eeb62fa8a5dfcb00ced7761e794149";
|
|
|
|
sha256 = "0a5jrb7ryafj55fgi8fhpy3gmb1xh5j7pbn8p5j5k6s2fnh0g0hq";
|
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)";
|
2017-08-01 21:03:30 +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
|
|
|
}
|