nixpkgs/pkgs/applications/misc/rxvt_unicode-plugins/urxvt-perls/default.nix

30 lines
715 B
Nix
Raw Normal View History

2015-10-13 13:08:46 +01:00
{ stdenv, fetchFromGitHub }:
2015-10-13 13:08:46 +01:00
stdenv.mkDerivation rec {
name = "urxvt-perls-${version}";
version = "2.2";
2015-10-13 13:08:46 +01:00
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;
};
2015-03-29 02:57:12 +01:00
}