Skip to content

Commit

Permalink
rxvt-unicode-plugins/urxvt-resize-font: init at 2019-10-05
Browse files Browse the repository at this point in the history
  • Loading branch information
rnhmjoj committed Feb 2, 2020
1 parent 1c38ce5 commit 4e15543
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/applications/misc/rxvt-unicode-plugins/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

perls = callPackage ./urxvt-perls { };

resize-font = callPackage ./urxvt-resize-font { };

tabbedex = callPackage ./urxvt-tabbedex { };

theme-switch = callPackage ./urxvt-theme-switch { };
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
pname = "urxvt-resize-font";
version = "2019-10-05";
dontPatchShebangs = true;

src = fetchFromGitHub {
owner = "simmel";
repo = "urxvt-resize-font";
rev = "e966a5d77264e9263bfc8a51e160fad24055776b";
sha256 = "18ab3bsfdkzzh1n9fpi2al5bksvv2b7fjmvxpx6fzqcy4bc64vkh";
};

installPhase = ''
mkdir -p $out/lib/urxvt/perl
cp resize-font $out/lib/urxvt/perl
'';

meta = with stdenv.lib; {
description = "URxvt Perl extension for resizing the font";
homepage = "https://github.com/simmel/urxvt-resize-font";
license = licenses.mit;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.unix;
};
}

0 comments on commit 4e15543

Please sign in to comment.