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
30 lines
713 B
Nix
30 lines
713 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "urxvt-perls-${version}";
|
|
version = "2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "muennich";
|
|
repo = "urxvt-perls";
|
|
rev = version;
|
|
sha256 = "1cb0jbjmwfy2dlq2ny8wpc04k79jp3pz9qhbmgagsxs3sp1jg2hz";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/urxvt/perl
|
|
cp clipboard \
|
|
keyboard-select \
|
|
url-select \
|
|
$out/lib/urxvt/perl
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Perl extensions for the rxvt-unicode terminal emulator";
|
|
homepage = https://github.com/muennich/urxvt-perls;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|