mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
25 lines
593 B
Nix
25 lines
593 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, libXmu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "xclip-${version}";
|
|
version = "0.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "astrand";
|
|
repo = "xclip";
|
|
rev = version;
|
|
sha256 = "0q0hmvcjlv8arhh1pzhja2wglyj6n7z209jnpnzd281kqqv4czcs";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libXmu ];
|
|
|
|
meta = {
|
|
description = "Tool to access the X clipboard from a console application";
|
|
homepage = https://github.com/astrand/xclip;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|