Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6c36b42e6749
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 37539e18a571
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Jan 26, 2020

  1. xmousepasteblock: init at 1.0

    petercommand authored and Profpatsch committed Jan 26, 2020
    Copy the full SHA
    37539e1 View commit details
Showing with 29 additions and 0 deletions.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +21 −0 pkgs/tools/X11/xmousepasteblock/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -5443,6 +5443,12 @@
githubId = 3250809;
name = "Milan Pässler";
};
petercommand = {
email = "petercommand@gmail.com";
github = "petercommand";
githubId = 1260660;
name = "petercommand";
};
peterhoeg = {
email = "peter@hoeg.com";
github = "peterhoeg";
21 changes: 21 additions & 0 deletions pkgs/tools/X11/xmousepasteblock/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ xorg, stdenv, libev, fetchFromGitHub, pkgconfig }:

stdenv.mkDerivation rec {
pname = "xmousepasteblock";
version = "1.0";
src = fetchFromGitHub {
owner = "milaq";
repo = "XMousePasteBlock";
sha256 = "0vidckfp277cg2gsww8a8q5b18m10iy4ppyp2qipr89771nrcmns";
rev = version;
};
makeFlags = "PREFIX=$(out)";
buildInputs = with xorg; [ libX11 libXext libXi libev ];
nativeBuildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
description = "Middle mouse button primary X selection/clipboard paste disabler";
homepage = https://github.com/milaq/XMousePasteBlock;
license = stdenv.lib.licenses.gpl2;
maintainers = [ maintainers.petercommand ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2138,6 +2138,8 @@ in
libmaxminddb = null;
};

xmousepasteblock = callPackage ../tools/X11/xmousepasteblock { };

mar1d = callPackage ../games/mar1d { } ;

mcrypt = callPackage ../tools/misc/mcrypt { };