treewide: add meta.mainProgram and other cleanup
This commit is contained in:
parent
cf73a86c35
commit
b5116310bc
9 changed files with 29 additions and 20 deletions
|
@ -65,11 +65,12 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
|
||||||
description = "Wayland-native application launcher, similar to rofi’s drun mode";
|
description = "Wayland-native application launcher, similar to rofi’s drun mode";
|
||||||
homepage = "https://codeberg.org/dnkl/fuzzel";
|
homepage = "https://codeberg.org/dnkl/fuzzel";
|
||||||
license = with licenses; [ mit zlib ];
|
license = with licenses; [ mit zlib ];
|
||||||
|
mainProgram = "fuzzel";
|
||||||
maintainers = with maintainers; [ fionera polykernel rodrgz ];
|
maintainers = with maintainers; [ fionera polykernel rodrgz ];
|
||||||
platforms = with platforms; linux;
|
platforms = with platforms; linux;
|
||||||
changelog = "https://codeberg.org/dnkl/fuzzel/releases/tag/${version}";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||||
owner = "jtheoof";
|
owner = "jtheoof";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-/XPvy98Il4i8cDl9vH6f0/AZmiSqseSXnen7HfMqCDo=";
|
hash = "sha256-/XPvy98Il4i8cDl9vH6f0/AZmiSqseSXnen7HfMqCDo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ glib meson ninja pkg-config scdoc wrapGAppsHook ];
|
nativeBuildInputs = [ glib meson ninja pkg-config scdoc wrapGAppsHook ];
|
||||||
|
@ -40,9 +40,10 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/jtheoof/swappy";
|
|
||||||
description = "A Wayland native snapshot editing tool, inspired by Snappy on macOS";
|
description = "A Wayland native snapshot editing tool, inspired by Snappy on macOS";
|
||||||
|
homepage = "https://github.com/jtheoof/swappy";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
mainProgram = "swappy";
|
||||||
maintainers = [ maintainers.matthiasbeyer ];
|
maintainers = [ maintainers.matthiasbeyer ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
|
@ -140,6 +140,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
description = "GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust";
|
description = "GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust";
|
||||||
homepage = "https://wezfurlong.org/wezterm";
|
homepage = "https://wezfurlong.org/wezterm";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
mainProgram = "wezterm";
|
||||||
maintainers = with maintainers; [ SuperSandro2000 mimame ];
|
maintainers = with maintainers; [ SuperSandro2000 mimame ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,8 +45,9 @@ python3Packages.buildPythonApplication rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://streamlink.github.io/";
|
changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md";
|
||||||
description = "CLI for extracting streams from various websites to video player of your choosing";
|
description = "CLI for extracting streams from various websites to video player of your choosing";
|
||||||
|
homepage = "https://streamlink.github.io/";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Streamlink is a CLI utility that pipes videos from online
|
Streamlink is a CLI utility that pipes videos from online
|
||||||
streaming services to a variety of video players such as VLC, or
|
streaming services to a variety of video players such as VLC, or
|
||||||
|
@ -54,8 +55,8 @@ python3Packages.buildPythonApplication rec {
|
||||||
|
|
||||||
Streamlink is a fork of the livestreamer project.
|
Streamlink is a fork of the livestreamer project.
|
||||||
'';
|
'';
|
||||||
changelog = "https://github.com/streamlink/streamlink/raw/${version}/CHANGELOG.md";
|
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
|
mainProgram = "streamlink";
|
||||||
maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ];
|
maintainers = with maintainers; [ dezgeg zraexy DeeUnderscore ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,14 +26,15 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Wallpaper tool for Wayland compositors";
|
description = "Wallpaper tool for Wayland compositors";
|
||||||
|
inherit (src.meta) homepage;
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
A wallpaper utility for Wayland compositors, that is compatible with any
|
A wallpaper utility for Wayland compositors, that is compatible with any
|
||||||
Wayland compositor which implements the following Wayland protocols:
|
Wayland compositor which implements the following Wayland protocols:
|
||||||
wlr-layer-shell, xdg-output, and xdg-shell.
|
wlr-layer-shell, xdg-output, and xdg-shell.
|
||||||
'';
|
'';
|
||||||
inherit (src.meta) homepage;
|
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.linux;
|
mainProgram = "swaybg";
|
||||||
maintainers = with maintainers; [ primeos ];
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
owner = "swaywm";
|
owner = "swaywm";
|
||||||
repo = "swayidle";
|
repo = "swayidle";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-/U6Y9H5ZqIJph3TZVcwr9+Qfd6NZNYComXuC1D9uGHg=";
|
hash = "sha256-/U6Y9H5ZqIJph3TZVcwr9+Qfd6NZNYComXuC1D9uGHg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
@ -29,13 +29,14 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Idle management daemon for Wayland";
|
description = "Idle management daemon for Wayland";
|
||||||
|
inherit (src.meta) homepage;
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Sway's idle management daemon. It is compatible with any Wayland
|
Sway's idle management daemon. It is compatible with any Wayland
|
||||||
compositor which implements the KDE idle protocol.
|
compositor which implements the KDE idle protocol.
|
||||||
'';
|
'';
|
||||||
inherit (src.meta) homepage;
|
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.linux;
|
mainProgram = "swayidle";
|
||||||
maintainers = with maintainers; [ primeos ];
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,10 +60,11 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
changelog = "https://github.com/Mic92/nixpkgs-review/releases/tag/${version}";
|
||||||
description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
|
description = "Review pull-requests on https://github.com/NixOS/nixpkgs";
|
||||||
homepage = "https://github.com/Mic92/nixpkgs-review";
|
homepage = "https://github.com/Mic92/nixpkgs-review";
|
||||||
changelog = "https://github.com/Mic92/nixpkgs-review/releases/tag/${version}";
|
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
mainProgram = "nixpkgs-review";
|
||||||
maintainers = with maintainers; [ figsoda mic92 ];
|
maintainers = with maintainers; [ figsoda mic92 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,11 +47,12 @@ stdenv.mkDerivation (finalAttrs: {
|
||||||
mesonFlags = [ (lib.mesonEnable "man-pages" buildDocs) ];
|
mesonFlags = [ (lib.mesonEnable "man-pages" buildDocs) ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/emersion/slurp";
|
|
||||||
description = "Select a region in a Wayland compositor";
|
|
||||||
changelog = "https://github.com/emersion/slurp/releases/tag/v${finalAttrs.version}";
|
changelog = "https://github.com/emersion/slurp/releases/tag/v${finalAttrs.version}";
|
||||||
license = licenses.mit;
|
description = "Select a region in a Wayland compositor";
|
||||||
maintainers = with maintainers; [ buffet ];
|
|
||||||
inherit (wayland.meta) platforms;
|
inherit (wayland.meta) platforms;
|
||||||
|
homepage = "https://github.com/emersion/slurp";
|
||||||
|
license = licenses.mit;
|
||||||
|
mainProgram = "slurp";
|
||||||
|
maintainers = with maintainers; [ buffet ];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
@ -29,11 +29,12 @@ rustPlatform.buildRustPackage {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
inherit (wayland.meta) platforms;
|
|
||||||
homepage = "https://github.com/Linus789/wl-clip-persist";
|
|
||||||
description = "Keep Wayland clipboard even after programs close";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ thiagokokada ];
|
|
||||||
broken = stdenv.isDarwin;
|
broken = stdenv.isDarwin;
|
||||||
|
description = "Keep Wayland clipboard even after programs close";
|
||||||
|
homepage = "https://github.com/Linus789/wl-clip-persist";
|
||||||
|
inherit (wayland.meta) platforms;
|
||||||
|
license = licenses.mit;
|
||||||
|
mainProgram = "wl-clip-persist";
|
||||||
|
maintainers = with maintainers; [ thiagokokada ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue