mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
1ecb2a8782
(cherry picked from commit c9ef3b51a3
)
22 lines
634 B
Nix
22 lines
634 B
Nix
{ stdenv, fetchsvn, xlibsWrapper, libXmu, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
# The last release from 2012, 0.12, lacks '-targets'
|
|
name = "xclip-0.12-svn-20140209";
|
|
|
|
src = fetchsvn {
|
|
url = "svn://svn.code.sf.net/p/xclip/code/trunk";
|
|
rev = "87";
|
|
sha256 = "1rbcdgr73916wvzfgqjs1jhgzk8qs1yw2iiqy7ifrkjafhi37w6b";
|
|
};
|
|
|
|
buildInputs = [ xlibsWrapper libXmu autoreconfHook ];
|
|
|
|
meta = {
|
|
description = "Tool to access the X clipboard from a console application";
|
|
homepage = http://sourceforge.net/projects/xclip/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|