9 stdenv.mkDerivation rec {
10 pname = "urxvt-font-size";
13 src = fetchFromGitHub {
15 repo = "urxvt-font-size";
17 sha256 = "1526ap161cp3378f4ijd09nmsh71ld7bkxxhp8p6razdi2v8r16h";
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
30 description = "Change the urxvt font size on the fly";
31 homepage = "https://github.com/majutsushi/urxvt-font-size";
32 license = licenses.mit;
34 platforms = with platforms; unix;