mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
36 lines
862 B
Nix
36 lines
862 B
Nix
{
|
|
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;
|
|
};
|
|
})
|