mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
60 lines
1.5 KiB
Nix
60 lines
1.5 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, wayland
|
|
, withNativeLibs ? false
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wl-clipboard-rs";
|
|
version = "0.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "YaLTeR";
|
|
repo = "wl-clipboard-rs";
|
|
rev = "v${version}";
|
|
hash = "sha256-tNmpGBg21IuhKEzY15O2MKVpMB+eCjvRVwVUahADuJU=";
|
|
};
|
|
|
|
cargoHash = "sha256-0Ix+fF1QO1KU8FIOb8EV4iYXe4S69sZOxCdxYccL8m0=";
|
|
|
|
cargoBuildFlags = [
|
|
"--package=wl-clipboard-rs"
|
|
"--package=wl-clipboard-rs-tools"
|
|
] ++ lib.optionals withNativeLibs [
|
|
"--features=native_lib"
|
|
];
|
|
|
|
nativeBuildInputs = lib.optionals withNativeLibs [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = lib.optionals withNativeLibs [
|
|
wayland
|
|
];
|
|
|
|
preCheck = ''
|
|
export XDG_RUNTIME_DIR=$(mktemp -d)
|
|
'';
|
|
|
|
# Assertion errors
|
|
checkFlags = [
|
|
"--skip=tests::copy::copy_large"
|
|
"--skip=tests::copy::copy_multi_no_additional_text_mime_types_test"
|
|
"--skip=tests::copy::copy_multi_test"
|
|
"--skip=tests::copy::copy_randomized"
|
|
"--skip=tests::copy::copy_test"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Command-line copy/paste utilities for Wayland, written in Rust";
|
|
homepage = "https://github.com/YaLTeR/wl-clipboard-rs";
|
|
changelog = "https://github.com/YaLTeR/wl-clipboard-rs/blob/v${version}/CHANGELOG.md";
|
|
platforms = platforms.linux;
|
|
license = with licenses; [ asl20 mit ];
|
|
mainProgram = "wl-clip";
|
|
maintainers = with maintainers; [ thiagokokada donovanglover ];
|
|
};
|
|
}
|