aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-vtwheel/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-12-09 18:55:19 +0000
committerMx Kookie <kookie@spacekookie.de>2020-12-09 18:55:19 +0000
commit80d90d9b204f7c17912740f9f414fe5d59f293ba (patch)
tree5f2065a06e724270610760d59d01c6888b375a46 /infra/libkookie/nixpkgs/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-vtwheel/default.nix
parent3a31a84c7d3e589035ad08499206aac44a81f424 (diff)
parent83cbad92d73216bb0d9187c56cce0b91f9121d5a (diff)
Merge commit '83cbad92d73216bb0d9187c56cce0b91f9121d5a' into main
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-vtwheel/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-vtwheel/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-vtwheel/default.nix b/infra/libkookie/nixpkgs/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-vtwheel/default.nix
deleted file mode 100644
index aebbedacef64..000000000000
--- a/infra/libkookie/nixpkgs/pkgs/applications/misc/rxvt-unicode-plugins/urxvt-vtwheel/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ 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;
- };
-
-}