Merge pull request #296442 from donovanglover/wl-clipboard-rs

wl-clipboard-rs: 0.8.0-unstable-2023-11-27 -> 0.8.1

Changed files
+10 -11
pkgs
by-name
wl
wl-clipboard-rs
+10 -11
pkgs/by-name/wl/wl-clipboard-rs/package.nix
···
, withNativeLibs ? false
}:
-
rustPlatform.buildRustPackage {
pname = "wl-clipboard-rs";
-
version = "0.8.0-unstable-2023-11-27";
src = fetchFromGitHub {
owner = "YaLTeR";
repo = "wl-clipboard-rs";
-
rev = "be851408e0f91edffdc2f1a76805035847f9f8a9";
-
hash = "sha256-OfLn7izG1KSUjdd2gO4aaSCDlcaWoFiFmgwwhR1hRsQ=";
};
-
cargoHash = "sha256-rYFCPyWTUhyrEcoRM8I+iX7IaY/6i1tBVjhs47m3XY8=";
cargoBuildFlags = [
"--package=wl-clipboard-rs"
···
"--skip=tests::copy::copy_test"
];
-
meta = {
description = "Command-line copy/paste utilities for Wayland, written in Rust";
homepage = "https://github.com/YaLTeR/wl-clipboard-rs";
-
# TODO: add `${version}` once we switch to tagged release
-
changelog = "https://github.com/YaLTeR/wl-clipboard-rs/blob/master/CHANGELOG.md";
-
platforms = lib.platforms.linux;
-
license = with lib.licenses; [ asl20 mit ];
mainProgram = "wl-clip";
-
maintainers = with lib.maintainers; [ thiagokokada ];
};
}
···
, 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"
···
"--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 ];
};
}