summaryrefslogtreecommitdiff
path: root/pkgs/swhkd/package.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-22 04:03:49 -0400
committerseth <[email protected]>2024-05-22 16:21:31 -0600
commitbf4a600a9d4b64e5f5afefc69ae67bc688734610 (patch)
treefc012bff949257845ce832fdc257714fb8d0251f /pkgs/swhkd/package.nix
parentdd17592efc03628a758a23fd9afc1cc47d128b32 (diff)
swhkd: drop
there are nixpkgs prs for this. i don't use it, and it's not packaged well
Diffstat (limited to 'pkgs/swhkd/package.nix')
-rw-r--r--pkgs/swhkd/package.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/swhkd/package.nix b/pkgs/swhkd/package.nix
deleted file mode 100644
index 4211346..0000000
--- a/pkgs/swhkd/package.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{
- lib,
- fetchFromGitHub,
- polkit,
- rustPlatform,
- xorg,
-}:
-rustPlatform.buildRustPackage rec {
- pname = "swhkd";
- version = "1.2.1";
-
- src = fetchFromGitHub {
- owner = "waycrate";
- repo = "swhkd";
- rev = version;
- sha256 = "sha256-VQW01j2RxhLUx59LAopZEdA7TyZBsJrF1Ym3LumvFqA=";
- };
-
- cargoPatches = [
- ./update-lock.patch
- ];
- cargoSha256 = "sha256-h8n4qB6n4et7d1CfIwam8y9A1gH9lsqZD50t9YI1ieM=";
-
- buildInputs = [
- polkit
- xorg.xf86inputevdev
- ];
-
- meta = with lib; {
- description = "Sxhkd clone for Wayland";
- longDescription = "a display protocol-independent hotkey daemon made in Rust";
- homepage = "https://github.com/waycrate/swhkd";
- license = licenses.bsd2;
- maintainers = [maintainers.getchoo];
- platforms = platforms.linux;
- };
-}