mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{ stdenv, lib, fetchFromGitHub, bc, curl, figlet, fortune, gawk, iproute2, procps }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fancy-motd";
|
|
version = "unstable-2022-06-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bcyran";
|
|
repo = pname;
|
|
rev = "812c58f04f65053271f866f3797baa2eba7324f5";
|
|
sha256 = "sha256-O/euB63Dyj+NyfZK42egSEYwZhL8B0jCxSSDYoT4cpo=";
|
|
};
|
|
|
|
buildInputs = [ bc curl figlet fortune gawk iproute2 ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace motd.sh \
|
|
--replace 'BASE_DIR="$(dirname "$(readlink -f "$0")")"' "BASE_DIR=\"$out/lib\""
|
|
|
|
substituteInPlace modules/20-uptime \
|
|
--replace "uptime -p" "${procps}/bin/uptime -p"
|
|
|
|
# does not work on nixos
|
|
rm modules/41-updates
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D motd.sh $out/bin/motd
|
|
|
|
install -D framework.sh $out/lib/framework.sh
|
|
install -D config.sh.example $out/lib/config.sh
|
|
find modules -type f -exec install -D {} $out/lib/{} \;
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fancy, colorful MOTD written in bash. Server status at a glance";
|
|
homepage = "https://github.com/bcyran/fancy-motd";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rhoriguchi ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "motd";
|
|
};
|
|
}
|