1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00
nixpkgs/pkgs/tools/misc/xclip/default.nix
2021-01-15 17:12:36 +07:00

25 lines
576 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libXmu }:
stdenv.mkDerivation rec {
pname = "xclip";
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 = lib.licenses.gpl2;
platforms = lib.platforms.all;
};
}