1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00

Merge pull request #18774 from cstrahan/xsel-update

xsel: 1.2.0 -> git-2016-09-02
This commit is contained in:
Alexey Shmalko 2016-09-28 00:42:05 +03:00 committed by GitHub
commit 4dd6d9748c

View file

@ -1,15 +1,29 @@
{stdenv, fetchurl, xlibsWrapper}:
{stdenv, lib, fetchFromGitHub, libX11, autoreconfHook }:
stdenv.mkDerivation {
name = "xsel-1.2.0";
src = fetchurl {
url = http://www.vergenet.net/~conrad/software/xsel/download/xsel-1.2.0.tar.gz;
sha256 = "070lbcpw77j143jrbkh0y1v10ppn1jwmjf92800w7x42vh4cw9xr";
stdenv.mkDerivation rec {
name = "xsel-unstable-${version}";
version = "2016-09-02";
src = fetchFromGitHub {
owner = "kfish";
repo = "xsel";
rev = "aa7f57eed805adb09e9c59c8ea841870e8206b81";
sha256 = "04mrc8j0rr7iy1k6brfxnx26pmxm800gh4nqrxn6j2lz6vd5y9m5";
};
buildInputs = [xlibsWrapper];
buildInputs = [ libX11 autoreconfHook ];
meta = {
platforms = stdenv.lib.platforms.unix;
# 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";
license = licenses.mit;
maintainers = [ maintainers.cstrahan ];
platforms = lib.platforms.unix;
};
}