2014-10-17 12:50:36 +01:00
|
|
|
{ stdenv, fetchgit }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-06-04 18:22:36 +01:00
|
|
|
name = "urxvt-tabbedex-2015-03-03";
|
2014-10-17 12:50:36 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/mina86/urxvt-tabbedex";
|
2015-05-18 14:58:21 +01:00
|
|
|
rev = "b0a02018b1cbaaba2a0c8ea7af9368db0adf3363";
|
|
|
|
sha256 = "f0025f2741d424736620147d9fc39faac68193cb9f74bde0fb6e02a6f1ae61c3";
|
2014-10-17 12:50:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D tabbedex $out/lib/urxvt/perl/tabbedex
|
|
|
|
'';
|
|
|
|
|
|
|
|
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 ];
|
2014-10-17 12:50:36 +01:00
|
|
|
};
|
2015-05-14 18:09:10 +01:00
|
|
|
}
|