wl-clip-persist: 0.3.1 -> 0.4.0

This commit is contained in:
name_snrl 2024-04-16 21:31:44 +05:00
parent 06c817b2ac
commit aa3476462a
2 changed files with 14 additions and 20 deletions

View File

@ -1,32 +1,28 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, wayland
{
lib,
stdenv,
rustPlatform,
fetchFromGitHub,
pkg-config,
wayland,
}:
rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage rec {
pname = "wl-clip-persist";
version = "0.3.1";
version = "0.4.0";
src = fetchFromGitHub {
owner = "Linus789";
repo = "wl-clip-persist";
# upstream doesn't tag releases
rev = "6ba11a2aa295d780f0b2e8f005cf176601d153b0";
hash = "sha256-wg4xEXLAZpWflFejP7ob4cnmRvo9d/0dL9hceG+RUr0=";
rev = "v${version}";
hash = "sha256-uu9R+/8483YyuvMeot2sRs8ihSN1AEPeDjzRxB1P8kc=";
};
cargoHash = "sha256-vNxNvJ5tA323EVArJ6glNslkq/Q6u7NsIpTYO1Q3GEw=";
cargoHash = "sha256-XpNpHi9vl89sbec6DXh50t8s328Uw4PpzFVvGp1TP6o=";
nativeBuildInputs = [
pkg-config
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [
wayland
];
buildInputs = [ wayland ];
meta = with lib; {
broken = stdenv.isDarwin;

View File

@ -4785,8 +4785,6 @@ with pkgs;
wlay = callPackage ../tools/wayland/wlay { };
wl-clip-persist = callPackage ../tools/wayland/wl-clip-persist { };
wl-clipboard = callPackage ../tools/wayland/wl-clipboard { };
wl-clipboard-x11 = callPackage ../tools/wayland/wl-clipboard-x11 { };