nixos/wireless: remove patch warning from allowAuxiliaryImperativeNetworks option...
[NixPkgs.git] / pkgs / applications / terminal-emulators / rxvt-unicode-plugins / urxvt-font-size / default.nix
blob9a32da5427e75ec0fdec7ff92ddeef72c2dcb0ef
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   xrdb,
6   xlsfonts,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "urxvt-font-size";
11   version = "1.3";
13   src = fetchFromGitHub {
14     owner = "majutsushi";
15     repo = "urxvt-font-size";
16     rev = "v${version}";
17     sha256 = "1526ap161cp3378f4ijd09nmsh71ld7bkxxhp8p6razdi2v8r16h";
18   };
20   installPhase = ''
21     substituteInPlace font-size \
22       --replace "xrdb -merge" "${xrdb}/bin/xrdb -merge" \
23       --replace "xlsfonts" "${xlsfonts}/bin/xlsfonts"
25     mkdir -p $out/lib/urxvt/perl
26     cp font-size $out/lib/urxvt/perl
27   '';
29   meta = with lib; {
30     description = "Change the urxvt font size on the fly";
31     homepage = "https://github.com/majutsushi/urxvt-font-size";
32     license = licenses.mit;
33     maintainers = [ ];
34     platforms = with platforms; unix;
35   };