wl-restart: init at 0.2.0
This commit is contained in:
parent
b8d0f5448b
commit
9a2f97a16b
36
pkgs/by-name/wl/wl-restart/package.nix
Normal file
36
pkgs/by-name/wl/wl-restart/package.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
scdoc,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "wl-restart";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ferdi265";
|
||||
repo = "wl-restart";
|
||||
rev = "refs/tags/v${finalAttrs.version}";
|
||||
hash = "sha256-pMsYLU9pjN2cgz7FxJJwkDHKJt1mIAuagJSBjrPUMAM=";
|
||||
};
|
||||
|
||||
cmakeFlags = [ (lib.cmakeBool "INSTALL_DOCUMENTATION" true) ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
scdoc
|
||||
cmake
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Simple tool that restarts your compositor when it crashes";
|
||||
homepage = "https://github.com/Ferdi265/wl-restart";
|
||||
changelog = "https://github.com/Ferdi265/wl-restart/releases/tag/v${finalAttrs.version}";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
mainProgram = "wl-restart";
|
||||
maintainers = with lib.maintainers; [ bot-wxt1221 ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user