f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
27 lines
754 B
Nix
27 lines
754 B
Nix
{ stdenv, fetchgit, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "rxvt_unicode-vtwheel-0.3.2";
|
|
|
|
src = fetchgit {
|
|
url = "https://aur.archlinux.org/urxvt-vtwheel.git";
|
|
rev = "36d3e861664aeae36a45f96100f10f8fe2218035";
|
|
sha256 = "1h3vrsbli5q9kr84j5ijbivlhpwlh3l8cv233pg362v2zz4ja8i7";
|
|
};
|
|
|
|
installPhase = ''
|
|
sed -i 's|#! perl|#! ${perl}/bin/perl|g' vtwheel
|
|
mkdir -p $out/lib/urxvt/perl
|
|
cp vtwheel $out/lib/urxvt/perl
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Pass mouse wheel commands to secondary screens (screen, less, nano, etc)";
|
|
homepage = https://aur.archlinux.org/packages/urxvt-vtwheel;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ danbst ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
|
|
} |