mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #311224 from Sigmanificient/libclipboard
libclipboard: init at 1.1
This commit is contained in:
commit
f99d061aae
38
pkgs/by-name/li/libclipboard/package.nix
Normal file
38
pkgs/by-name/li/libclipboard/package.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
pkg-config,
|
||||
libxcb,
|
||||
libXau,
|
||||
libXdmcp,
|
||||
darwin,
|
||||
lib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
name = "libclipboard";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jtanx";
|
||||
repo = "libclipboard";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-553hNG8QUlt/Aff9EKYr6w279ELr+2MX7nh1SKIklhA=";
|
||||
};
|
||||
|
||||
buildInputs = [ libxcb libXau libXdmcp ]
|
||||
++ lib.optional stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
|
||||
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
meta = {
|
||||
description = "Lightweight cross-platform clipboard library";
|
||||
homepage = "https://jtanx.github.io/libclipboard";
|
||||
platforms = lib.platforms.unix;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.sigmanificient ];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user