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: 2935a67eb946
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1a78500fe45e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 21, 2019

  1. Copy the full SHA
    51483ec View commit details
  2. Merge pull request #56112 from NixOS/xsel-08-01-10

    xsel: 2016-09-02 -> 2018-01-10
    Mic92 authored Feb 21, 2019
    Copy the full SHA
    1a78500 View commit details
Showing with 3 additions and 8 deletions.
  1. +3 −8 pkgs/tools/misc/xsel/default.nix
11 changes: 3 additions & 8 deletions pkgs/tools/misc/xsel/default.nix
Original file line number Diff line number Diff line change
@@ -3,23 +3,18 @@
stdenv.mkDerivation rec {
name = "xsel-unstable-${version}";

version = "2016-09-02";
version = "2018-01-10";

src = fetchFromGitHub {
owner = "kfish";
repo = "xsel";
rev = "aa7f57eed805adb09e9c59c8ea841870e8206b81";
sha256 = "04mrc8j0rr7iy1k6brfxnx26pmxm800gh4nqrxn6j2lz6vd5y9m5";
rev = "9bfc13d64b5acb92c6648c696a9d9260fcbecc65";
sha256 = "05ms34by5hxznnpvmvhgp6llvlkz0zw4sq6c4bgwr82lj140lscm";
};

nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libX11 ];

# We need a README file, otherwise autoconf complains.
postUnpack = ''
mv $sourceRoot/README{.md,}
'';

meta = with lib; {
description = "Command-line program for getting and setting the contents of the X selection";
homepage = http://www.kfish.org/software/xsel;