mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
aw-watcher-window-wayland: init at unstable-2023-08-03
This commit is contained in:
parent
cae874e52f
commit
7a291058c9
1689
pkgs/aw-watcher-window-wayland/Cargo.lock
generated
Normal file
1689
pkgs/aw-watcher-window-wayland/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
38
pkgs/aw-watcher-window-wayland/default.nix
Normal file
38
pkgs/aw-watcher-window-wayland/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user