diff options
| author | seth <[email protected]> | 2024-04-10 19:16:57 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-04-27 00:30:17 +0000 |
| commit | b62ecb140da824fdb2425358ec1ab0b0b80f8e6c (patch) | |
| tree | 0d0544863d0d5314999c2f554ef2fd715e811f40 /pkgs/swhkd/default.nix | |
| parent | 54f61b3c3c726d8b325583617edb0bb24a8764ab (diff) | |
pkgsFrom -> packagesFromDirectoryRecursive
i had no idea this was a thing. thanks aemogie
Diffstat (limited to 'pkgs/swhkd/default.nix')
| -rw-r--r-- | pkgs/swhkd/default.nix | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/swhkd/default.nix b/pkgs/swhkd/default.nix deleted file mode 100644 index 4211346..0000000 --- a/pkgs/swhkd/default.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; - }; -} |
