Merge pull request #270182 from eclairevoyant/fnott

fnott: set meta.mainProgram, passthru.updateScript, and other cleanup
This commit is contained in:
Weijia Wang 2023-11-30 01:54:57 +01:00 committed by GitHub
commit 59f9784c42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 7 deletions

View File

@ -1,5 +1,6 @@
{ stdenv
, lib
, gitUpdater
, fetchFromGitea
, pkg-config
, meson
@ -26,9 +27,10 @@ stdenv.mkDerivation rec {
owner = "dnkl";
repo = "fnott";
rev = version;
sha256 = "sha256-8SKInlj54BP3Gn/DNVoLN62+Dfa8G5d/q2xGUXXdsjo=";
hash = "sha256-8SKInlj54BP3Gn/DNVoLN62+Dfa8G5d/q2xGUXXdsjo=";
};
strictDeps = true;
depsBuildBuild = [
pkg-config
];
@ -51,11 +53,14 @@ stdenv.mkDerivation rec {
fcft
];
meta = with lib; {
passthru.updateScript = gitUpdater { };
meta = {
homepage = "https://codeberg.org/dnkl/fnott";
description = "Keyboard driven and lightweight Wayland notification daemon for wlroots-based compositors";
license = with licenses; [ mit zlib ];
maintainers = with maintainers; [ polykernel ];
platforms = platforms.linux;
license = with lib.licenses; [ mit zlib ];
maintainers = with lib.maintainers; [ polykernel ];
mainProgram = "fnott";
platforms = lib.platforms.linux;
};
}

View File

@ -31427,8 +31427,6 @@ with pkgs;
flowtime = callPackage ../applications/misc/flowtime { };
fnott = callPackage ../applications/misc/fnott { };
furnace = callPackage ../applications/audio/furnace {
inherit (darwin.apple_sdk.frameworks) Cocoa;
};