tree-sitter-grammars.tree-sitter-kdl: init (#371287)
[NixPkgs.git] / pkgs / applications / terminal-emulators / rxvt-unicode-plugins / urxvt-resize-font / default.nix
blob8b71ccae908542ce17aa1e425ead506258d0a5cc
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation {
8   pname = "urxvt-resize-font";
9   version = "2019-10-05";
10   dontPatchShebangs = true;
12   src = fetchFromGitHub {
13     owner = "simmel";
14     repo = "urxvt-resize-font";
15     rev = "e966a5d77264e9263bfc8a51e160fad24055776b";
16     sha256 = "18ab3bsfdkzzh1n9fpi2al5bksvv2b7fjmvxpx6fzqcy4bc64vkh";
17   };
19   installPhase = ''
20     mkdir -p $out/lib/urxvt/perl
21     cp resize-font $out/lib/urxvt/perl
22   '';
24   meta = with lib; {
25     description = "URxvt Perl extension for resizing the font";
26     homepage = "https://github.com/simmel/urxvt-resize-font";
27     license = licenses.mit;
28     maintainers = with maintainers; [ rnhmjoj ];
29     platforms = platforms.unix;
30   };