clapboard: init at 0.1.1

This commit is contained in:
Mostly Void 2023-07-29 18:48:57 +02:00
parent 212f20a907
commit d3158be89b
No known key found for this signature in database
GPG Key ID: E2B7342D0CAA82C2
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "clapboard";
version = "0.1.1";
src = fetchFromGitHub {
owner = "bjesus";
repo = "clapboard";
rev = "v${version}";
hash = "sha256-/4HBhsW2C3xYzKVw9TuSj8b7LdirWbNg4OxLm/ebf40=";
};
cargoHash = "sha256-bq+r2J2lhhZKTEV69OnsXiAGKspOZ0kF0q2hDnbIXn8=";
meta = with lib; {
description = "Wayland clipboard manager that will make you clap";
homepage = "https://github.com/bjesus/clapboard";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
platforms = platforms.linux;
};
}

View File

@ -4478,6 +4478,8 @@ with pkgs;
chopchop = callPackage ../tools/security/chopchop { };
clapboard = callPackage ../tools/wayland/clapboard { };
cliphist = callPackage ../tools/wayland/cliphist { };
clipman = callPackage ../tools/wayland/clipman { };