mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-02 05:42:15 +00:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
37 lines
767 B
Nix
37 lines
767 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
weechat,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "highmon";
|
|
version = "2.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://raw.githubusercontent.com/KenjiE20/highmon/182e67d070c75efc81999e68c2ac7fdfe44d2872/highmon.pl";
|
|
sha256 = "1vvgzscb12l3cp2nq954fx6j3awvpjsb0nqylal51ps9cq9a3wir";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
passthru.scripts = [ "highmon.pl" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D $src $out/share/highmon.pl
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
inherit (weechat.meta) platforms;
|
|
homepage = "https://github.com/KenjiE20/highmon/";
|
|
description = "WeeChat script that adds 'Highlight Monitor'";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ govanify ];
|
|
};
|
|
}
|