about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-tabbedex/default.nix
blob: 68be8b738de6dd81feff9ddf0004737e3545258e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchFromGitHub, perl }:

stdenv.mkDerivation {
  name = "urxvt-tabbedex-2016-08-17";

  src = fetchFromGitHub {
    owner = "mina86";
    repo = "urxvt-tabbedex";
    rev = "089d0cb724eeb62fa8a5dfcb00ced7761e794149";
    sha256 = "0a5jrb7ryafj55fgi8fhpy3gmb1xh5j7pbn8p5j5k6s2fnh0g0hq";
  };

  nativeBuildInputs = [ perl ];

  installFlags = [ "PREFIX=$(out)" ];

  meta = with stdenv.lib; {
    description = "Tabbed plugin for rxvt-unicode with many enhancements (mina86's fork)";
    homepage = https://github.com/mina86/urxvt-tabbedex;
    maintainers = with maintainers; [ abbradar ];
    platforms = with platforms; unix;
  };
}