aw-watcher-window-wayland: init at unstable-2023-08-03

This commit is contained in:
Gabriel Arazas 2023-08-03 16:33:08 +08:00
parent cae874e52f
commit 7a291058c9
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
3 changed files with 1728 additions and 0 deletions

1689
pkgs/aw-watcher-window-wayland/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,38 @@
{ stdenv
, lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "aw-watcher-window-wayland";
version = "unstable-2023-08-03";
src = fetchFromGitHub {
owner = "ActivityWatch";
repo = "aw-watcher-window-wayland";
rev = "6108ad3df8e157965a43566fa35cdaf144b1c51b";
hash = "sha256-xl9+k6xJp5/t1QPOYfnBLyYprhhrzjzByDKkT3dtVVQ=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"aw-client-rust-0.1.0" = "sha256-9tlVesnBeTlazKE2UAq6dzivjo42DT7p7XMuWXHHlnU=";
};
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
env.OPENSSL_NO_VENDOR = "1";
meta = with lib; {
homepage = "https://github.com/ActivityWatch/aw-watcher-window-wayland";
description = "ActivityWatch AFK and window watcher for Wayland";
license = licenses.mpl20;
maintainers = with maintainers; [ foo-dogsquared ];
};
}

View File

@ -7,6 +7,7 @@ let
let callPackage = newScope self;
in rec {
awesome-cli = callPackage ./awesome-cli { };
aw-watcher-window-wayland = callPackage ./aw-watcher-window-wayland { };
decker = callPackage ./decker { };
cosmic-launcher = callPackage ./cosmic-launcher { };
clidle = callPackage ./clidle.nix { };